|
29 | 29 | <java.version>1.8</java.version> |
30 | 30 | <jackson.minimum.version>2.9.7</jackson.minimum.version> |
31 | 31 | <jackson.version>2.10.0</jackson.version> |
32 | | - <jersey.version>2.27</jersey.version> |
| 32 | + <jersey.version>2.33</jersey.version> |
33 | 33 | <junit.jupiter.version>5.0.0-M4</junit.jupiter.version> |
34 | 34 | <junit.platform.version>1.0.0-M4</junit.platform.version> |
35 | 35 | </properties> |
|
63 | 63 | <version>${jersey.version}</version> |
64 | 64 | </dependency> |
65 | 65 |
|
66 | | - <!-- Serialization --> |
| 66 | + <!-- Jersey client requires this dependency --> |
| 67 | + <dependency> |
| 68 | + <groupId>javax.activation</groupId> |
| 69 | + <artifactId>activation</artifactId> |
| 70 | + <version>1.1.1</version> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + <!-- Serialization to JSON --> |
67 | 74 | <dependency> |
68 | 75 | <groupId>com.fasterxml.jackson.core</groupId> |
69 | 76 | <artifactId>jackson-core</artifactId> |
|
125 | 132 | <artifactId>log4j</artifactId> |
126 | 133 | <version>1.2.17</version> |
127 | 134 | </dependency> |
128 | | - |
129 | | - <!-- javax.xml.bind is removed from java 11 , Jackson will throw error without dependencies for it--> |
130 | | - <!-- https://stackoverflow.com/questions/52502189/java-11-package-javax-xml-bind-does-not-exist --> |
131 | | - <dependency> |
132 | | - <groupId>javax.xml.bind</groupId> |
133 | | - <artifactId>jaxb-api</artifactId> |
134 | | - <version>2.3.0</version> |
135 | | - </dependency> |
136 | | - <dependency> |
137 | | - <groupId>com.sun.xml.bind</groupId> |
138 | | - <artifactId>jaxb-core</artifactId> |
139 | | - <version>2.3.0</version> |
140 | | - </dependency> |
141 | | - <dependency> |
142 | | - <groupId>com.sun.xml.bind</groupId> |
143 | | - <artifactId>jaxb-impl</artifactId> |
144 | | - <version>2.3.0</version> |
145 | | - </dependency> |
146 | | - <dependency> |
147 | | - <groupId>javax.activation</groupId> |
148 | | - <artifactId>activation</artifactId> |
149 | | - <version>1.1.1</version> |
150 | | - </dependency> |
151 | | - |
152 | 135 | </dependencies> |
153 | 136 |
|
154 | 137 | <!-- all of the below is needed for releasing --> |
|
160 | 143 | <plugin> |
161 | 144 | <groupId>org.apache.maven.plugins</groupId> |
162 | 145 | <artifactId>maven-compiler-plugin</artifactId> |
| 146 | + <version>3.1</version> |
163 | 147 | <configuration> |
164 | 148 | <source>1.8</source> |
165 | 149 | <target>1.8</target> |
|
0 commit comments