Skip to content

Commit

Permalink
Merge pull request #403 from Shalindri/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rksk authored Feb 13, 2023
2 parents 424a184 + b92f030 commit 5e2b3bd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
8 changes: 8 additions & 0 deletions etc/backend-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,20 @@
<artifactId>gson</artifactId>
<version>${com.google.code.gson.version}</version>
</dependency>
<!--=============================================================================-->

<!--dependencies of backend-service-->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax.annotation.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${javax.xml.bind.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -887,6 +901,12 @@
<nimbusds.osgi.version.range>[2.26.0,8.0.0)</nimbusds.osgi.version.range>
<json-smart.version.range>[1.3.0,3.0.0)</json-smart.version.range>
<oauth2.outbound.version.range>[1.0.5, 2.0.0)</oauth2.outbound.version.range>

<!--=============================================================================-->

<!--repo versions of backend-service-->
<javax.annotation.version>1.2</javax.annotation.version>
<javax.xml.bind.version>2.3.1</javax.xml.bind.version>
</properties>

</project>

0 comments on commit 5e2b3bd

Please sign in to comment.