Skip to content

Commit

Permalink
Correcting dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Jan 2, 2019
1 parent 9ed87a4 commit eb5039f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 25 deletions.
2 changes: 1 addition & 1 deletion jcore-db-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>jedis-parent</artifactId>
<groupId>de.julielab</groupId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
<relativePath>../jedis-parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
10 changes: 5 additions & 5 deletions jcore-xmi-db-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jedis-parent</artifactId>
<groupId>de.julielab</groupId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
<relativePath>../jedis-parent</relativePath>
</parent>
<artifactId>jcore-xmi-db-reader</artifactId>
Expand All @@ -18,7 +18,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-db-reader</artifactId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-xmi-splitter</artifactId>
<version>2.3.2</version>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
Expand Down Expand Up @@ -61,13 +61,13 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-xml-db-reader</artifactId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-xmi-db-writer</artifactId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jcore-xmi-db-writer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>jedis-parent</artifactId>
<groupId>de.julielab</groupId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
<relativePath>../jedis-parent</relativePath>
</parent>
<artifactId>jcore-xmi-db-writer</artifactId>
Expand Down Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-xmi-splitter</artifactId>
<version>2.3.2</version>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,19 +480,9 @@ public void process(JCas aJCas) throws AnalysisEngineProcessException {
// + tableName;
if (storeBaseDocument && isDocumentTable) {
serializedCASes.get(tableName)
.add(new DocumentXmiData(docId, storedData, newXmiId, currentSofaXmiIdMap));// Object[]
// {
// docId,
// storedData,
// newXmiId
// });
.add(new DocumentXmiData(docId, storedData, newXmiId, currentSofaXmiIdMap));
} else {
serializedCASes.get(tableName).add(new XmiData(docId, storedData));// new
// Object[]
// {
// docId,
// storedData
// });
serializedCASes.get(tableName).add(new XmiData(docId, storedData));
if (!storeBaseDocument)
annotationInserter.putXmiIdMapping(docId, newXmiId);

Expand Down
1 change: 0 additions & 1 deletion jcore-xmi-writer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<artifactId>jcore-base</artifactId>
<version>2.3.8</version>
</parent>
<version>2.3.9-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>de.julielab</groupId>
Expand Down
4 changes: 2 additions & 2 deletions jcore-xml-db-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>jedis-parent</artifactId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
<relativePath>../jedis-parent</relativePath>
</parent>
<build>
Expand Down Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-db-reader</artifactId>
<version>2.3.8</version>
<version>2.3.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
Expand Down
4 changes: 2 additions & 2 deletions jedis-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
</parent>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>

<artifactId>jedis-parent</artifactId>
<description>This is an intermediate parent POM between the jcore-base parent and the components belonging to the
Jena Document Information (JeDIS) infrastructure. This POM determines the version of CoStoSys to use.
</description>
<version>2.3.9-SNAPSHOT</version>
<dependencyManagement>
<dependencies>
<dependency>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-db-test-utilities</artifactId>
<version>2.3.2-SNAPSHOT</version>
<version>2.3.2</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit eb5039f

Please sign in to comment.