|
20 | 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
21 | 21 | <modelVersion>4.0.0</modelVersion> |
22 | 22 | <groupId>org.aksw</groupId> |
23 | | - <artifactId>gerbil</artifactId> |
24 | | - <version>1.2.3-QA-RC1</version> |
25 | | - <name>General Entity Annotator Benchmark</name> |
| 23 | + <artifactId>gerbil-qa</artifactId> |
| 24 | + <version>0.1.0</version> |
| 25 | + <name>General Entity Annotator Benchmark - Question Answering Extension</name> |
26 | 26 | <description>This project is a benchmark for entity annotation and disambiguation tools extended towards question answering.</description> |
27 | 27 | <inceptionYear>2014</inceptionYear> |
28 | 28 |
|
29 | 29 | <properties> |
30 | | - <java.version>1.7</java.version> |
| 30 | + <java.version>1.7</java.version> |
31 | 31 | <slf4j.version>1.7.6</slf4j.version> |
32 | 32 | <junit.version>4.11</junit.version> |
33 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
34 | 34 | <spring.version>3.2.17.RELEASE</spring.version> |
35 | 35 | <jena.version>2.13.0</jena.version> |
36 | | - <jsonld-java-jena.version>0.4.1</jsonld-java-jena.version> |
| 36 | + <jsonld-java-jena.version>0.4.1</jsonld-java-jena.version> |
37 | 37 | </properties> |
38 | 38 |
|
39 | 39 | <repositories> |
|
63 | 63 | <!-- NIF transfer lib --> |
64 | 64 | <dependency> |
65 | 65 | <groupId>org.aksw</groupId> |
66 | | - <artifactId>gerbil.nif.transfer</artifactId> |
| 66 | + <artifactId>gerbil.nif.transfer</artifactId> |
67 | 67 | <version>1.2.1</version> |
68 | 68 | </dependency> |
69 | 69 | <!-- Jena for using JSON-LD --> |
|
100 | 100 | <groupId>ch.qos.logback</groupId> |
101 | 101 | <artifactId>logback-classic</artifactId> |
102 | 102 | </exclusion> |
103 | | - </exclusions> |
| 103 | + </exclusions> |
104 | 104 | </dependency> |
105 | 105 |
|
106 | 106 | <!-- NERD --> |
|
116 | 116 | <artifactId>slf4j-api</artifactId> |
117 | 117 | <version>${slf4j.version}</version> |
118 | 118 | </dependency> |
119 | | - <!-- slf4j: Logging Binding - is already contained in aida --> |
| 119 | + <!-- slf4j: Logging Binding - is already contained in aida --> |
120 | 120 | <dependency> |
121 | 121 | <groupId>org.slf4j</groupId> |
122 | 122 | <artifactId>slf4j-log4j12</artifactId> |
|
211 | 211 | <groupId>edu.stanford</groupId> |
212 | 212 | <artifactId>stanpost341</artifactId> |
213 | 213 | <version>3.4.1</version> |
214 | | - </dependency> |
215 | | - |
| 214 | + </dependency> |
| 215 | + |
216 | 216 | <!-- File Upload --> |
217 | 217 | <dependency> |
218 | 218 | <groupId>commons-fileupload</groupId> |
|
288 | 288 | <groupId>org.hsqldb</groupId> |
289 | 289 | <artifactId>hsqldb</artifactId> |
290 | 290 | <version>2.3.2</version> |
291 | | - </dependency> |
| 291 | + </dependency> |
292 | 292 | <!-- H2 in-memory SQL DB --> |
293 | 293 | <dependency> |
294 | 294 | <groupId>com.h2database</groupId> |
|
304 | 304 | </dependency> |
305 | 305 |
|
306 | 306 | <!-- FOX --> |
307 | | - <dependency> |
| 307 | + <dependency> |
308 | 308 | <groupId>org.apache.httpcomponents</groupId> |
309 | 309 | <artifactId>fluent-hc</artifactId> |
310 | 310 | <version>4.4</version> |
|
317 | 317 | <dependency> |
318 | 318 | <groupId>org.apache.httpcomponents</groupId> |
319 | 319 | <artifactId>httpclient</artifactId> |
320 | | - <version>4.4</version> |
| 320 | + <version>4.4</version> |
321 | 321 | </dependency> |
322 | 322 | <dependency> |
323 | 323 | <groupId>org.json</groupId> |
|
355 | 355 | <artifactId>license-maven-plugin</artifactId> |
356 | 356 | <version>2.6</version> |
357 | 357 | <configuration> |
358 | | - <header>com/mycila/maven/plugin/license/templates/LGPL-3.txt</header> |
359 | | - <properties> |
360 | | - <owner>Agile Knowledge Engineering and Semantic Web (AKSW) |
361 | | - |
| 358 | + <header>com/mycila/maven/plugin/license/templates/LGPL-3.txt</header> |
| 359 | + <properties> |
| 360 | + <owner>Agile Knowledge Engineering and Semantic Web (AKSW) |
| 361 | + |
362 | 362 | </properties> |
363 | 363 | <excludes> |
364 | 364 | <exclude>**/README</exclude> |
|
375 | 375 | <exclude>src/test/resources/**</exclude> |
376 | 376 | </excludes> |
377 | 377 | </configuration> |
378 | | - </plugin> |
| 378 | + </plugin> |
379 | 379 | <!-- Maven Exec Plugin --> |
380 | 380 | <plugin> |
381 | 381 | <groupId>org.codehaus.mojo</groupId> |
|
418 | 418 | </goals> |
419 | 419 | </execution> |
420 | 420 | </executions> |
421 | | - </plugin> |
| 421 | + </plugin> |
422 | 422 | </plugins> |
423 | 423 |
|
424 | 424 | <resources> |
|
0 commit comments