Skip to content
Snippets Groups Projects
Commit 70372f24 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

sbgn requires additional dependencies in jdk 11

parent 82eaf0ff
No related branches found
No related tags found
1 merge request!862Resolve "make code compatible with java 11"
This commit is part of merge request !862. Comments created here will be created in the context of that merge request.
......@@ -60,6 +60,24 @@
<version>${xercesImp.version}</version>
</dependency>
<!-- Java xml serialization -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>${activation-version}</version>
</dependency>
<dependency>
<groupId>org.sbgn</groupId>
<artifactId>libsbgn</artifactId>
......
......@@ -25,13 +25,14 @@
<jaxws-api.version>2.3.0</jaxws-api.version>
<jaxb.version>2.3.0</jaxb.version>
<txw2.version>2.3.0</txw2.version>
<activation-version>1.1</activation-version>
<apache.httpcomponents.version>4.5.8</apache.httpcomponents.version>
<apache.httpcomponents-core.version>4.4.11</apache.httpcomponents-core.version>
<!-- version 4.x has conflict on dependencies with jsbml 1.4 -->
<apache.poi.version>3.16</apache.poi.version>
<commons-codec.version>1.11</commons-codec.version>
<mockito.version>2.27.0</mockito.version>
<springframework.version>5.0.9.RELEASE</springframework.version>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment