Skip to content

Commit

Permalink
Update CDK; enforce recent Maven versions used (for version checker p…
Browse files Browse the repository at this point in the history
…lugin); remove duplicate dependency in EBL-issuance (already inherited)
  • Loading branch information
jkosternl committed Sep 20, 2024
1 parent e78c2f4 commit cb43598
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>software.amazon.awscdk</groupId>
<artifactId>aws-cdk-lib</artifactId>
<version>2.156.0</version>
<version>2.159.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
4 changes: 0 additions & 4 deletions ebl-issuance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
<description>DCSA Conformance eBL Issuance</description>

<dependencies>
<dependency>
<groupId>org.dcsa.conformance</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>org.dcsa.conformance</groupId>
<artifactId>ebl</artifactId>
Expand Down
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.8</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

<pluginManagement>
Expand Down

0 comments on commit cb43598

Please sign in to comment.