forked from protegeproject/protege
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
60 lines (54 loc) · 2.11 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
<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>
<!-- Inherit from Sonatype OSS Parent POM. Protege libraries are hosted on Sonatype OSSRH (OSS Repository Hosting Service). -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>aggregator</artifactId>
<packaging>pom</packaging>
<!-- Increment version number each time list of modules changes. -->
<version>1</version>
<name>Protege Desktop Aggregator</name>
<description>Protege Desktop Aggregator POM</description>
<modules>
<module>ca.uvic.cs.chisel.cajun</module>
<module>org.coode.dlquery</module>
<module>org.coode.owlviz</module>
<module>org.protege.common</module>
<module>org.protege.editor.core.application</module>
<module>org.protege.editor.owl</module>
<module>org.protege.editor.owl.client</module>
<module>org.protege.editor.owl.codegeneration</module>
<module>org.protege.editor.owl.diff</module>
<module>org.protege.editor.owl.rdf</module>
<module>org.protege.explanation</module>
<module>org.protege.ontograf</module>
<module>org.protege.osgi.debug</module>
<module>org.protege.owl.diff</module>
<module>org.protege.owl.rdf</module>
<module>org.protege.owl.server</module>
<module>protege-base</module>
<module>protege-distribution</module>
<module>protege-parent</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptors>
<descriptor>protege-distribution/src/main/assembly/protege-as-directory.xml</descriptor>
<descriptor>protege-distribution/src/main/assembly/protege-as-app.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>