Skip to content

Commit

Permalink
Merge pull request #393 from boozallen/363-upgrade-semantic-data-java17
Browse files Browse the repository at this point in the history
#363 fix the mda module build issue by adding the missing dependencies
  • Loading branch information
csun-cpointe authored Oct 3, 2024
2 parents 91a892b + 0c3f65d commit 2f783ea
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions foundation/foundation-maven-plugins/mda-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<version.mojo.executor>2.4.0</version.mojo.executor>
<version.testing.harness>3.3.0</version.testing.harness>
<version.exec.plugin>3.1.0</version.exec.plugin>
<version.aether>1.1.0</version.aether>
</properties>

<dependencies>
Expand Down Expand Up @@ -108,14 +109,23 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<!-- this is added because the maven-dependency-plugin is looking for commons-io 2.13.0 but
we are using the 2.16.1 version in the build-parent. This is for test only ref: #390 -->
<version>2.13.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-connector-basic</artifactId>
<version>${version.aether}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-transport-http</artifactId>
<version>${version.aether}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 2f783ea

Please sign in to comment.