Skip to content

Commit

Permalink
prepare project (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
goekay committed Sep 17, 2022
1 parent 2014f9b commit 83e5efb
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,17 @@
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-oas</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-spring-webmvc</artifactId>
<version>3.0.0</version>
</dependency>

<dependency>
<groupId>com.github.goekay</groupId>
<artifactId>CompositeJKS</artifactId>
Expand Down Expand Up @@ -528,6 +539,12 @@
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Needed for Joda fields in de.rwth.idsg.steve.web.api -->
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<version>${jackson.version}</version>
</dependency>

<!-- Spring -->
<dependency>
Expand Down Expand Up @@ -694,6 +711,30 @@
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.7.0</version>
<scope>test</scope>
</dependency>

<!-- https://github.com/zafarkhaja/jsemver -->
<dependency>
Expand Down

0 comments on commit 83e5efb

Please sign in to comment.