Skip to content

Commit

Permalink
feat: native Spring Web workloads (aws#335) - use newer dependency ve…
Browse files Browse the repository at this point in the history
…rsions for sample
  • Loading branch information
deki committed Jan 25, 2024
1 parent 1bd5f72 commit 227b2a7
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions samples/springboot3/pet-store-native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.2</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>com.amazonaws.serverless.sample</groupId>
Expand All @@ -31,12 +31,12 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>3.9.0</version>
<version>3.11.4</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-core</artifactId>
<version>1.1.0</version>
<version>1.2.3</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -119,4 +119,23 @@
</build>
</profile>
</profiles>

<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>

0 comments on commit 227b2a7

Please sign in to comment.