Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#363 fix the mda module build issue by adding the missing dependencies #393

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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