-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
46 lines (45 loc) · 1.69 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
<!--
~ Copyright (c) 2012 Czech Technical University in Prague.
~
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the GNU Lesser Public License v2.1
~ which accompanies this distribution, and is available at
~ http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-->
<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>
<artifactId>owldiff</artifactId>
<packaging>pom</packaging>
<name>OWLDiff</name>
<version>0.2.1-SNAPSHOT</version>
<description>OWLDiff - diff of OWL ontologies</description>
<distributionManagement>
<repository>
<id>kbss</id>
<url>http://kbss.felk.cvut.cz/var/www/m2repo</url>
</repository>
</distributionManagement>
<modules>
<module>owldiff-parent</module>
<module>owldiff-core</module>
<module>owldiff-cli</module>
<module>owldiff-standalone</module>
<module>owldiff-protege-plugin</module>
</modules>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>3.4.1</version>
</extension>
</extensions>
</build>
</project>