Skip to content

Commit

Permalink
Bugfix in the POM file for the v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Plu committed May 8, 2019
1 parent 85d4f96 commit 4bcabe3
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ hs_err_pid*
*.pdf
*.json
*/indexing/*.txt
*.txt
*.nif
dependency-reduced-pom.xml
untitled.xml
.DS_Store
Expand Down
77 changes: 61 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
<source>1.9</source>
<target>1.9</target>
<encoding>UTF-8</encoding>
<compilerArgs>
<arg>--add-modules</arg>
<arg>java.xml.bind</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -90,48 +86,77 @@
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>LATEST</version>
</dependency>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
</dependency>

<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0.1</version>
</dependency>

<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.4.0-b180830.0438</version>
</dependency>

<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>

<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>rest</artifactId>
<version>LATEST</version>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>apache-jena-libs</artifactId>
<type>pom</type>
<version>LATEST</version>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>LATEST</version>
<version>6.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>LATEST</version>
<version>6.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>LATEST</version>
<version>6.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-backward-codecs</artifactId>
<version>LATEST</version>
<version>6.4.1</version>
</dependency>
<dependency>
<groupId>com.github.mpkorstanje</groupId>
<artifactId>simmetrics-core</artifactId>
<version>LATEST</version>
<version>4.1.1</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>LATEST</version>
<version>1.10.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -146,7 +171,7 @@
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-testing</artifactId>
<version>LATEST</version>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>dnbn</groupId>
Expand Down Expand Up @@ -188,11 +213,31 @@
<artifactId>commons-compress</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>local-maven-repo</id>
<url>file:///${basedir}${file.separator}local-maven-repo</url>
</repository>
</repositories>
</project>
</project>

0 comments on commit 4bcabe3

Please sign in to comment.