-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
57 lines (47 loc) · 1.48 KB
/
pom.xml
File metadata and controls
57 lines (47 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
-->
<parent>
<groupId>cz.vutbr.fit.layout</groupId>
<artifactId>parent</artifactId>
<version>0.0.5-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>layout-api</artifactId>
<name>FitLayout API</name>
<description>
An extensible web page segmentation and analysis framework. This package contains the shared APIs.
</description>
<url>http://www.fit.vutbr.cz/~burgetr/FITLayout/</url>
<licenses>
<license>
<name>GNU Lesser General Public License 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Radek Burget</name>
<roles>
<role>Main developer & project leader</role>
</roles>
</developer>
</developers>
<scm>
<url>https://github.com/FitLayout/api</url>
<connection>scm:git:git@github.com:FitLayout/api.git</connection>
<developerConnection>scm:git:git@github.com:FitLayout/api.git</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>