Skip to content

Commit

Permalink
[yegor256#1198] update maven-core
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Mar 12, 2024
1 parent c2d5d0d commit a721c17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
10 changes: 8 additions & 2 deletions qulice-maven-plugin/pom.xml
Expand Up @@ -70,7 +70,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-exec</artifactId>
<version>1.1</version>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.sisu</groupId>
<artifactId>org.eclipse.sisu.plexus</artifactId>
<version>0.3.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
Expand Down Expand Up @@ -145,7 +151,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.0.5</version>
<version>3.8.1</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Expand Up @@ -121,7 +121,7 @@ public File outdir() {
}

@Override
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops")
@SuppressWarnings({"PMD.AvoidInstantiatingObjectsInLoops", "deprecation"})
public Collection<String> classpath() {
final Collection<String> paths = new LinkedList<>();
final String blank = "%20";
Expand Down
Expand Up @@ -151,7 +151,6 @@ private MojoDescriptor descriptor(final Plugin plugin, final String goal) {
try {
return this.helper.getPluginDescriptor(
plugin,
this.session.getCurrentProject().getRemotePluginRepositories(),
this.session
).getMojo(goal);
} catch (final PluginResolutionException ex) {
Expand Down

0 comments on commit a721c17

Please sign in to comment.