Skip to content

Commit

Permalink
Upgrade to pom-scijava 29 #41
Browse files Browse the repository at this point in the history
- upgrade pom-scijava to 29.2.1
- upgrade dropwizard from 1.2.0 to 2.0.9
- upgrade jersey-media-multipart from 2.23.2 to 2.31
- use jackson version 2.11.2
- delete DefaultTableIOPlugin, use TableIOService instead
- make TableIOPluginTest use new options API for reading and writing
tables
- use BytesHandle instead of ByteArrayHandle
  • Loading branch information
ctrueden authored and frauzufall committed Aug 14, 2020
1 parent 24972d9 commit 789f923
Show file tree
Hide file tree
Showing 5 changed files with 181 additions and 494 deletions.
45 changes: 32 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>26.0.0</version>
<version>29.2.1</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -93,12 +93,16 @@
Wisconsin-Madison.</license.copyrightOwners>
<license.projectName>ImageJ server for RESTful access to ImageJ.</license.projectName>

<dropwizard.version>1.2.0</dropwizard.version>
<jersey-media-multipart.version>2.23.2</jersey-media-multipart.version>
<scifio.version>0.37.5</scifio.version>
<dropwizard.version>2.0.9</dropwizard.version>
<jackson.version>2.11.2</jackson.version>
<jersey-media-multipart.version>2.31</jersey-media-multipart.version>
<scijava-table.version>0.7.0</scijava-table.version>
<scijava-plugins-io-table.version>0.4.0</scijava-plugins-io-table.version>
<scijava-common.version>2.84.0</scijava-common.version>

<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>deploy-to-scijava</releaseProfiles>

</properties>

<repositories>
Expand All @@ -122,6 +126,14 @@ Wisconsin-Madison.</license.copyrightOwners>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<!--
NB: Conflicts with jakarta.servlet:jakarta.servlet-api which is brought in by
io.dropwizard:dropwizard-core and io.dropwizard:dropwizard-testing.
-->
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -134,6 +146,21 @@ Wisconsin-Madison.</license.copyrightOwners>
<artifactId>jersey-media-multipart</artifactId>
<version>${jersey-media-multipart.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down Expand Up @@ -165,6 +192,7 @@ Wisconsin-Madison.</license.copyrightOwners>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-testing</artifactId>
<version>${dropwizard.version}</version>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
Expand All @@ -173,13 +201,4 @@ Wisconsin-Madison.</license.copyrightOwners>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-testing</artifactId>
<version>${dropwizard.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Loading

0 comments on commit 789f923

Please sign in to comment.