Skip to content

Commit

Permalink
Version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiddo committed Apr 21, 2023
1 parent 9464189 commit 7789218
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.8.6-eclipse-temurin-17 as build-cache
FROM maven:3.9.1-eclipse-temurin-17 as build-cache
WORKDIR /tmp/app

COPY pom.xml .
Expand Down
28 changes: 25 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.4</version>
<version>2.7.11</version>
</parent>

<groupId>org.jkiddo</groupId>
<artifactId>ember</artifactId>
<version>0.3.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
<repositories>
<repository>
<id>oss-snapshots</id>
Expand All @@ -26,7 +26,7 @@
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<hapi_version>6.2.0</hapi_version>
<hapi_version>6.4.4</hapi_version>
</properties>

<dependencies>
Expand Down Expand Up @@ -63,6 +63,28 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.truth/truth -->
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.1.3</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.truth.extensions/truth-java8-extension -->
<dependency>
<groupId>com.google.truth.extensions</groupId>
<artifactId>truth-java8-extension</artifactId>
<version>1.1.3</version>
<scope>test</scope>
</dependency>


</dependencies>

<build>
Expand Down

0 comments on commit 7789218

Please sign in to comment.