Skip to content

Commit ea74978

Browse files
authored
[MCOMPILER-381] - Refactor incremental detection (#181)
Signed-off-by: Jorge Solórzano <[email protected]>
1 parent fd37f09 commit ea74978

File tree

4 files changed

+187
-119
lines changed

4 files changed

+187
-119
lines changed

pom.xml

+4-10
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,6 @@ under the License.
8080
<invoker.junitPackageName>org.apache.maven.plugins.compiler.its</invoker.junitPackageName>
8181
</properties>
8282

83-
<dependencyManagement>
84-
<dependencies>
85-
<dependency>
86-
<!-- to remove with plexus-java upgrade -->
87-
<groupId>com.thoughtworks.qdox</groupId>
88-
<artifactId>qdox</artifactId>
89-
<version>2.0.3</version>
90-
</dependency>
91-
</dependencies>
92-
</dependencyManagement>
9383
<dependencies>
9484
<dependency>
9585
<groupId>org.apache.maven.plugin-tools</groupId>
@@ -162,6 +152,10 @@ under the License.
162152
<version>${plexusCompilerVersion}</version>
163153
<scope>runtime</scope>
164154
</dependency>
155+
<dependency>
156+
<groupId>org.codehaus.plexus</groupId>
157+
<artifactId>plexus-utils</artifactId>
158+
</dependency>
165159

166160
<dependency>
167161
<groupId>org.apache.maven.plugin-testing</groupId>

src/it/MCOMPILER-522-unresolvable-dependency/verify.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ def buildLog = logFile.getText('UTF-8')
2424
assert buildLog.contains( "Caused by: org.apache.maven.plugin.MojoExecutionException: " +
2525
"Resolution of annotationProcessorPath dependencies failed: " )
2626
assert buildLog.contains(
27-
"Could not find artifact org.apache.maven.plugins.compiler.it:annotation-processor-non-existing:jar:1.0-SNAPSHOT" )
27+
"The POM for org.apache.maven.plugins.compiler.it:annotation-processor-non-existing:jar:1.0-SNAPSHOT is missing, no dependency information available" )

0 commit comments

Comments
 (0)