aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authoryzhou <yujiao.zhou@gmail.com>2015-04-21 10:34:27 +0100
committeryzhou <yujiao.zhou@gmail.com>2015-04-21 10:34:27 +0100
commit9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8 (patch)
tree47511c0fb89dccff0db4b5990522e04f294d795b /pom.xml
parentb1ac207612ee8b045244253fb94b866104bc34f2 (diff)
downloadACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.tar.gz
ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.zip
initial version
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml106
1 files changed, 106 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..9ee2be1
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,106 @@
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>uk.ac.ox.cs.pagoda</groupId>
5 <artifactId>pagoda</artifactId>
6 <version>2.0.0</version>
7 <name>PAGOdA</name>
8 <build>
9 <sourceDirectory>src</sourceDirectory>
10 <testSourceDirectory>test</testSourceDirectory>
11 <plugins>
12 <plugin>
13 <artifactId>maven-compiler-plugin</artifactId>
14 <version>3.1</version>
15 <configuration>
16 <source>1.7</source>
17 <target>1.7</target>
18 </configuration>
19 </plugin>
20 <plugin>
21 <artifactId>maven-project-info-reports-plugin</artifactId>
22 <version>2.7</version>
23 </plugin>
24 </plugins>
25 </build>
26 <reporting>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-javadoc-plugin</artifactId>
31 <version>2.9.1</version>
32 <configuration>
33 <show>public</show>
34 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>findbugs-maven-plugin</artifactId>
39 <version>3.0.0</version>
40 <configuration>
41 <xmlOutput>true</xmlOutput>
42 <!-- Optional directory to put findbugs xdoc xml report -->
43 <xmlOutputDirectory>target/site</xmlOutputDirectory>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-checkstyle-plugin</artifactId>
49 <version>2.5</version>
50 <configuration>
51 <configLocation>config/sun_checks.xml</configLocation><!-- default -->
52 <!-- <configLocation>config/maven_checks.xml</configLocation> -->
53 <!-- <configLocation>config/turbine_checks.xml</configLocation> -->
54 <!-- <configLocation>config/avalon_checks.xml</configLocation> -->
55 </configuration>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-jxr-plugin</artifactId>
60 <version>2.1</version>
61 </plugin>
62 <plugin>
63 <groupId>org.codehaus.mojo</groupId>
64 <artifactId>dashboard-maven-plugin</artifactId>
65 <version>1.0.0-beta-1</version>
66 </plugin>
67 </plugins>
68 </reporting>
69 <dependencies>
70 <dependency>
71 <groupId>com.hermit-reasoner</groupId>
72 <artifactId>org.semanticweb.hermit</artifactId>
73 <version>1.3.8.1</version>
74 </dependency>
75 <dependency>
76 <groupId>net.sourceforge.owlapi</groupId>
77 <artifactId>owlapi-distribution</artifactId>
78 <version>3.5.0</version>
79 </dependency>
80 <dependency>
81 <groupId>org.openrdf.sesame</groupId>
82 <artifactId>sesame-runtime</artifactId>
83 <version>2.7.13</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.jena</groupId>
87 <artifactId>jena-arq</artifactId>
88 <version>2.12.0</version>
89 </dependency>
90 <dependency>
91 <groupId>org.antlr</groupId>
92 <artifactId>antlr-complete</artifactId>
93 <version>3.5.2</version>
94 </dependency>
95 <dependency>
96 <groupId>log4j</groupId>
97 <artifactId>log4j</artifactId>
98 <version>1.2.17</version>
99 </dependency>
100 <dependency>
101 <groupId>org.jgrapht</groupId>
102 <artifactId>jgrapht-jdk1.5</artifactId>
103 <version>0.7.3</version>
104 </dependency>
105 </dependencies>
106</project>