Skip to content

Commit a721c17

Browse files
committed
[#1198] update maven-core
1 parent c2d5d0d commit a721c17

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

qulice-maven-plugin/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
7070
<dependency>
7171
<groupId>org.apache.maven.reporting</groupId>
7272
<artifactId>maven-reporting-exec</artifactId>
73-
<version>1.1</version>
73+
<version>1.6.0</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.eclipse.sisu</groupId>
77+
<artifactId>org.eclipse.sisu.plexus</artifactId>
78+
<version>0.3.4</version>
79+
<scope>runtime</scope>
7480
</dependency>
7581
<dependency>
7682
<groupId>org.hamcrest</groupId>
@@ -145,7 +151,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
145151
<dependency>
146152
<groupId>org.apache.maven</groupId>
147153
<artifactId>maven-core</artifactId>
148-
<version>3.0.5</version>
154+
<version>3.8.1</version>
149155
<scope>provided</scope>
150156
</dependency>
151157
<dependency>

qulice-maven-plugin/src/main/java/com/qulice/maven/DefaultMavenEnvironment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public File outdir() {
121121
}
122122

123123
@Override
124-
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops")
124+
@SuppressWarnings({"PMD.AvoidInstantiatingObjectsInLoops", "deprecation"})
125125
public Collection<String> classpath() {
126126
final Collection<String> paths = new LinkedList<>();
127127
final String blank = "%20";

qulice-maven-plugin/src/main/java/com/qulice/maven/MojoExecutor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ private MojoDescriptor descriptor(final Plugin plugin, final String goal) {
151151
try {
152152
return this.helper.getPluginDescriptor(
153153
plugin,
154-
this.session.getCurrentProject().getRemotePluginRepositories(),
155154
this.session
156155
).getMojo(goal);
157156
} catch (final PluginResolutionException ex) {

0 commit comments

Comments
 (0)