Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit 4453466

Browse files
author
sowerstl
committed
Dependency updates; (DOECODE-832)
1 parent 8b3207d commit 4453466

File tree

2 files changed

+23
-18
lines changed

2 files changed

+23
-18
lines changed

pom.xml

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
<properties>
1212
<jdk.version>1.8</jdk.version>
13-
<jersey.version>2.25</jersey.version>
13+
<jersey.version>2.30</jersey.version>
1414
<httpclient.version>4.5.10</httpclient.version>
15-
<jackson.version>2.10.0</jackson.version>
15+
<jackson.version>2.10.2</jackson.version>
1616
<commons-io.version>2.6</commons-io.version>
1717
<projectName>doecodeapi</projectName>
1818
<datacite.url>https://mds.test.datacite.org/</datacite.url>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>junit</groupId>
3131
<artifactId>junit</artifactId>
32-
<version>4.12</version>
32+
<version>4.13</version>
3333
<scope>test</scope>
3434
</dependency>
3535
<dependency>
@@ -49,22 +49,22 @@
4949
<dependency>
5050
<groupId>org.slf4j</groupId>
5151
<artifactId>slf4j-log4j12</artifactId>
52-
<version>1.7.28</version>
52+
<version>1.7.30</version>
5353
</dependency>
5454

5555
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
5656
<dependency>
5757
<groupId>org.postgresql</groupId>
5858
<artifactId>postgresql</artifactId>
59-
<version>42.2.8</version>
59+
<version>42.2.9</version>
6060
</dependency>
6161

6262
<!-- https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber -->
6363
<!-- for phone number validation, including international -->
6464
<dependency>
6565
<groupId>com.googlecode.libphonenumber</groupId>
6666
<artifactId>libphonenumber</artifactId>
67-
<version>8.10.18</version>
67+
<version>8.11.2</version>
6868
</dependency>
6969

7070
<!-- Apache HTTP multipart form upload -->
@@ -126,6 +126,11 @@
126126
<artifactId>jersey-client</artifactId>
127127
<version>${jersey.version}</version>
128128
</dependency>
129+
<dependency>
130+
<groupId>org.glassfish.jersey.inject</groupId>
131+
<artifactId>jersey-hk2</artifactId>
132+
<version>${jersey.version}</version>
133+
</dependency>
129134
<dependency>
130135
<groupId>org.glassfish.jersey.ext</groupId>
131136
<artifactId>jersey-mvc-jsp</artifactId>
@@ -156,12 +161,12 @@
156161
<dependency>
157162
<groupId>org.eclipse.persistence</groupId>
158163
<artifactId>org.eclipse.persistence.jpa</artifactId>
159-
<version>2.7.4</version>
164+
<version>2.7.5</version>
160165
</dependency>
161166
<dependency>
162167
<groupId>org.eclipse.persistence</groupId>
163168
<artifactId>org.eclipse.persistence.moxy</artifactId>
164-
<version>2.7.4</version>
169+
<version>2.7.5</version>
165170
</dependency>
166171
<dependency>
167172
<groupId>commons-beanutils</groupId>
@@ -181,31 +186,31 @@
181186
<dependency>
182187
<groupId>org.hibernate.validator</groupId>
183188
<artifactId>hibernate-validator</artifactId>
184-
<version>6.0.17.Final</version>
189+
<version>6.1.1.Final</version>
185190
</dependency>
186191
<dependency>
187192
<groupId>org.hibernate.validator</groupId>
188193
<artifactId>hibernate-validator-annotation-processor</artifactId>
189-
<version>6.0.17.Final</version>
194+
<version>6.1.1.Final</version>
190195
</dependency>
191196

192197
<!-- apache shiro authentication layer -->
193198
<dependency>
194199
<groupId>org.apache.shiro</groupId>
195200
<artifactId>shiro-core</artifactId>
196-
<version>1.4.1</version>
201+
<version>1.4.2</version>
197202
</dependency>
198203

199204
<dependency>
200205
<groupId>org.apache.shiro</groupId>
201206
<artifactId>shiro-web</artifactId>
202-
<version>1.4.1</version>
207+
<version>1.4.2</version>
203208
</dependency>
204209

205210
<dependency>
206-
<groupId>org.secnod.shiro</groupId>
207-
<artifactId>shiro-jersey</artifactId>
208-
<version>0.2.0</version>
211+
<groupId>org.apache.shiro</groupId>
212+
<artifactId>shiro-jaxrs</artifactId>
213+
<version>1.4.2</version>
209214
</dependency>
210215

211216
<dependency>
@@ -224,7 +229,7 @@
224229
<dependency>
225230
<groupId>org.eclipse.jgit</groupId>
226231
<artifactId>org.eclipse.jgit</artifactId>
227-
<version>5.4.3.201909031940-r</version>
232+
<version>5.6.0.201912101111-r</version>
228233
<type>jar</type>
229234
</dependency>
230235
<!-- SVN support -->

src/main/webapp/WEB-INF/web.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
3030
<init-param>
3131
<param-name>jersey.config.server.provider.classnames</param-name>
32-
<param-value>org.secnod.shiro.jersey.AuthorizationFilterFeature, org.secnod.shiro.jersey.SubjectFactory, org.secnod.shiro.jersey.AuthInjectionBinder,
33-
org.secnod.shiro.jaxrs.ShiroExceptionMapper,
32+
<param-value>org.apache.shiro.web.jaxrs.AuthorizationFilterFeature, org.apache.shiro.web.jaxrs.ShiroFeature,
33+
org.apache.shiro.web.jaxrs.ShiroSecurityContext,
3434
gov.osti.services.Metadata,gov.osti.services.Types,gov.osti.services.Validation,
3535
gov.osti.services.SearchService,gov.osti.services.GoogleSitemapService,org.glassfish.jersey.media.multipart.MultiPartFeature,
3636
gov.osti.services.Documentation,gov.osti.services.CodeGov,

0 commit comments

Comments
 (0)