-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
138 lines (127 loc) · 5.05 KB
/
pom.xml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.cvut.kbss</groupId>
<version>0.4.0</version>
<artifactId>s-pipes</artifactId>
<packaging>pom</packaging>
<name>SPipes (Semantic Pipelines)</name>
<modules>
<module>s-pipes-parent</module>
<module>s-pipes-core</module>
<module>s-pipes-model</module>
<module>s-pipes-cli</module>
<module>s-pipes-web</module>
<module>s-pipes-modules</module>
<module>s-pipes-modules-registry</module>
<module>s-pipes-modules-utils</module>
<module>s-pipes-forms</module>
<module>s-pipes-test</module>
</modules>
<build>
<extensions>
<!-- Enabling the use of FTP -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.12</version>
</extension>
</extensions>
<plugins>
<!-- use mvn license:check to check for missing license headers, mvn license:format to add license headers -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.11</version>
<configuration>
<header>header.txt</header>
<excludes>
<exclude>**/src/test/resources/**</exclude>
<exclude>**/src/main/resources/**</exclude>
<exclude>**/testResults/**</exclude>
<exclude>**/*.owl</exclude>
<exclude>license</exclude>
<exclude>readme</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/pom.xml</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration> <!-- add this to disable checking -->
<additionalparam>-Xdoclint:none</additionalparam>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<url>https://kbss.felk.cvut.cz/gitblit/summary/s-pipes.git</url>
<connection>scm:git:https://kbss.felk.cvut.cz/git/s-pipes.git</connection>
</scm>
<distributionManagement>
<repository>
<id>kbss</id>
<name>KBSS Maven 2 Repository</name>
<url>scp://kbss.felk.cvut.cz/var/www/m2repo</url>
</repository>
</distributionManagement>
<developers>
<developer>
<name>Petr Křemen</name>
<email>[email protected]</email>
<url>http://cyber.felk.cvut.cz/people</url>
<organization>Czech Technical University in Prague, Knowledge Based and Software Systems Group
</organization>
<organizationUrl>http://kbss.felk.cvut.cz</organizationUrl>
<roles>
</roles>
</developer>
<developer>
<name>Miroslav Blaško</name>
<email>[email protected]</email>
<url>http://cyber.felk.cvut.cz/people</url>
<organization>Czech Technical University in Prague, Knowledge Based and Software Systems Group
</organization>
<organizationUrl>http://kbss.felk.cvut.cz</organizationUrl>
<roles>
</roles>
</developer>
</developers>
<organization>
<name>Czech Technical University in Prague, Knowledge Based and Software Systems Group</name>
<url>http://kbss.felk.cvut.cz</url>
</organization>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>repo</distribution>
</license>
</licenses>
</project>