Skip to content

Commit 871ad8e

Browse files
Add dependency to plexus-compiler-eclipse in ITs
ITs use plexus-compiler-eclipse so should be on dependencies list We should use in tests artifact from current build execution, not one installed in local repository
1 parent b7cc076 commit 871ad8e

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/workflows/maven.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
jdk-matrix: '["11", "17", "21"]'
3131
jdk-distribution-matrix: '["zulu", "temurin", "microsoft", "liberica", "corretto"]'
3232
os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]'
33-
maven_args: 'install javadoc:javadoc -e -B -V -fae -Pno-tests-if-not-on-osx'
33+
maven_args: 'verify javadoc:javadoc -e -B -V -fae -Pno-tests-if-not-on-osx'
3434

plexus-compiler-its/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
<groupId>org.codehaus.plexus</groupId>
2525
<artifactId>plexus-compiler-aspectj</artifactId>
2626
</dependency>
27+
<dependency>
28+
<groupId>org.codehaus.plexus</groupId>
29+
<artifactId>plexus-compiler-eclipse</artifactId>
30+
</dependency>
2731
<dependency>
2832
<groupId>org.codehaus.plexus</groupId>
2933
<artifactId>plexus-compiler-javac</artifactId>

pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@
7272
<artifactId>plexus-compiler-aspectj</artifactId>
7373
<version>${project.version}</version>
7474
</dependency>
75+
<dependency>
76+
<groupId>org.codehaus.plexus</groupId>
77+
<artifactId>plexus-compiler-eclipse</artifactId>
78+
<version>${project.version}</version>
79+
</dependency>
7580
<dependency>
7681
<groupId>org.codehaus.plexus</groupId>
7782
<artifactId>plexus-compiler-javac-errorprone</artifactId>

0 commit comments

Comments
 (0)