diff options
| author | RncLsn <rnc.lsn@gmail.com> | 2015-05-18 18:27:32 +0100 |
|---|---|---|
| committer | RncLsn <rnc.lsn@gmail.com> | 2015-05-18 18:27:32 +0100 |
| commit | c7dbc7c61c7094ea4ec49bd630023f23b92fd9d1 (patch) | |
| tree | 45ff5a535e7d519b58d60c0c214a1f9ecc5a35ef /pom.xml | |
| parent | 1b6a128137e5d7a6ff75566869232fc054afabef (diff) | |
| download | ACQuA-c7dbc7c61c7094ea4ec49bd630023f23b92fd9d1.tar.gz ACQuA-c7dbc7c61c7094ea4ec49bd630023f23b92fd9d1.zip | |
Configured Maven and improved executable class and tests.
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 49 |
1 files changed, 47 insertions, 2 deletions
| @@ -3,11 +3,22 @@ | |||
| 3 | <modelVersion>4.0.0</modelVersion> | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>uk.ac.ox.cs.pagoda</groupId> | 4 | <groupId>uk.ac.ox.cs.pagoda</groupId> |
| 5 | <artifactId>pagoda</artifactId> | 5 | <artifactId>pagoda</artifactId> |
| 6 | <version>2.0.0</version> | 6 | <version>2.1.0-SNAPSHOT</version> |
| 7 | <packaging>jar</packaging> | ||
| 7 | <name>PAGOdA</name> | 8 | <name>PAGOdA</name> |
| 8 | <build> | 9 | <build> |
| 9 | <sourceDirectory>src</sourceDirectory> | 10 | <sourceDirectory>src</sourceDirectory> |
| 10 | <testSourceDirectory>test</testSourceDirectory> | 11 | <testSourceDirectory>test</testSourceDirectory> |
| 12 | <resources> | ||
| 13 | <resource> | ||
| 14 | <directory>src/resources</directory> | ||
| 15 | </resource> | ||
| 16 | </resources> | ||
| 17 | <testResources> | ||
| 18 | <testResource> | ||
| 19 | <directory>test/resources</directory> | ||
| 20 | </testResource> | ||
| 21 | </testResources> | ||
| 11 | <plugins> | 22 | <plugins> |
| 12 | <plugin> | 23 | <plugin> |
| 13 | <artifactId>maven-compiler-plugin</artifactId> | 24 | <artifactId>maven-compiler-plugin</artifactId> |
| @@ -21,6 +32,19 @@ | |||
| 21 | <artifactId>maven-project-info-reports-plugin</artifactId> | 32 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 22 | <version>2.7</version> | 33 | <version>2.7</version> |
| 23 | </plugin> | 34 | </plugin> |
| 35 | <plugin> | ||
| 36 | <artifactId>maven-assembly-plugin</artifactId> | ||
| 37 | <configuration> | ||
| 38 | <archive> | ||
| 39 | <manifest> | ||
| 40 | <mainClass>uk.ac.ox.cs.pagoda.Pagoda</mainClass> | ||
| 41 | </manifest> | ||
| 42 | </archive> | ||
| 43 | <descriptorRefs> | ||
| 44 | <descriptorRef>jar-with-dependencies</descriptorRef> | ||
| 45 | </descriptorRefs> | ||
| 46 | </configuration> | ||
| 47 | </plugin> | ||
| 24 | </plugins> | 48 | </plugins> |
| 25 | </build> | 49 | </build> |
| 26 | <reporting> | 50 | <reporting> |
| @@ -68,6 +92,11 @@ | |||
| 68 | </reporting> | 92 | </reporting> |
| 69 | <dependencies> | 93 | <dependencies> |
| 70 | <dependency> | 94 | <dependency> |
| 95 | <groupId>commons-cli</groupId> | ||
| 96 | <artifactId>commons-cli</artifactId> | ||
| 97 | <version>1.3</version> | ||
| 98 | </dependency> | ||
| 99 | <dependency> | ||
| 71 | <groupId>com.hermit-reasoner</groupId> | 100 | <groupId>com.hermit-reasoner</groupId> |
| 72 | <artifactId>org.semanticweb.hermit</artifactId> | 101 | <artifactId>org.semanticweb.hermit</artifactId> |
| 73 | <version>1.3.8.1</version> | 102 | <version>1.3.8.1</version> |
| @@ -106,7 +135,8 @@ | |||
| 106 | <dependency> | 135 | <dependency> |
| 107 | <groupId>org.testng</groupId> | 136 | <groupId>org.testng</groupId> |
| 108 | <artifactId>testng</artifactId> | 137 | <artifactId>testng</artifactId> |
| 109 | <version>6.7</version> | 138 | <version>6.8.8</version> |
| 139 | <scope>test</scope> | ||
| 110 | </dependency> | 140 | </dependency> |
| 111 | <!--<dependency>--> | 141 | <!--<dependency>--> |
| 112 | <!--<groupId>com.googlecode.json-simple</groupId>--> | 142 | <!--<groupId>com.googlecode.json-simple</groupId>--> |
| @@ -123,5 +153,20 @@ | |||
| 123 | <artifactId>ehcache</artifactId> | 153 | <artifactId>ehcache</artifactId> |
| 124 | <version>2.10.0</version> | 154 | <version>2.10.0</version> |
| 125 | </dependency> | 155 | </dependency> |
| 156 | <dependency> | ||
| 157 | <groupId>uk.ac.ox.cs.jrdfox</groupId> | ||
| 158 | <artifactId>jrdfox</artifactId> | ||
| 159 | <version>1.0</version> | ||
| 160 | </dependency> | ||
| 161 | <!--<dependency>--> | ||
| 162 | <!--<groupId>commons-lang</groupId>--> | ||
| 163 | <!--<artifactId>commons-lang</artifactId>--> | ||
| 164 | <!--<version>2.1</version>--> | ||
| 165 | <!--</dependency>--> | ||
| 166 | <!--<dependency>--> | ||
| 167 | <!--<groupId>org.codehaus.plexus</groupId>--> | ||
| 168 | <!--<artifactId>plexus-utils</artifactId>--> | ||
| 169 | <!--<version>1.1</version>--> | ||
| 170 | <!--</dependency>--> | ||
| 126 | </dependencies> | 171 | </dependencies> |
| 127 | </project> | 172 | </project> |
