refactor: 💡 some deps

pull/1580/head
Dominik Frantisek Bucik 2021-12-03 14:42:45 +01:00
parent 2379ff64de
commit 78513a9085
No known key found for this signature in database
GPG Key ID: 25014C8DB2E7E62D
3 changed files with 31 additions and 0 deletions

View File

@ -69,6 +69,18 @@
<groupId>cz.muni.ics</groupId>
<artifactId>perun-oidc-server</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
</dependencies>
<build>

View File

@ -119,6 +119,14 @@
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>

11
pom.xml
View File

@ -114,6 +114,7 @@
<httpclient.version>4.5.13</httpclient.version>
<nimbus-jose-jwt.version>8.23</nimbus-jose-jwt.version>
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
<jaxb.version>2.3.3</jaxb.version>
<aspectjweaver.version>1.9.7</aspectjweaver.version>
<!-- BUILD -->
@ -295,6 +296,16 @@
<artifactId>javax.annotation-api</artifactId>
<version>${javax-annotation-api.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>