-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpom.xml
More file actions
7 lines (7 loc) · 926 Bytes
/
pom.xml
File metadata and controls
7 lines (7 loc) · 926 Bytes
1
2
3
4
5
6
7
<project><modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId><artifactId>cloudfront-tutorial</artifactId><version>1.0</version>
<properties><maven.compiler.source>17</maven.compiler.source><maven.compiler.target>17</maven.compiler.target></properties>
<dependencyManagement><dependencies><dependency><groupId>software.amazon.awssdk</groupId><artifactId>bom</artifactId><version>2.25.0</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement>
<dependencies><dependency><groupId>software.amazon.awssdk</groupId><artifactId>cloudfront</artifactId></dependency>
<dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.10.0</version><scope>test</scope></dependency>
<dependency><groupId>org.mockito</groupId><artifactId>mockito-junit-jupiter</artifactId><version>5.8.0</version><scope>test</scope></dependency></dependencies></project>