Skip to content

Commit

Permalink
upgrade maven-antrun-plugin to support maven parallel builds (#7393)
Browse files Browse the repository at this point in the history
When running `maven` in parallel build mode (`mvn -T 1C`), getting this warning:
```console
[WARNING] *****************************************************************
[WARNING] * Your build is requesting parallel execution, but project      *
[WARNING] * contains the following plugin(s) that have goals not marked   *
[WARNING] * as @threadsafe to support parallel building.                  *
[WARNING] * While this /may/ work fine, please look for plugin updates    *
[WARNING] * and/or request plugins be made thread-safe.                   *
[WARNING] * If reporting an issue, report it against the plugin in        *
[WARNING] * question, not against maven-core                              *
[WARNING] *****************************************************************
[WARNING] The following plugins are not marked @threadsafe in cudfjni:
[WARNING] org.apache.maven.plugins:maven-antrun-plugin:1.3
[WARNING] Enable debug to see more precisely which goals are not marked @threadsafe.
[WARNING] *****************************************************************
```
Upgrading the `org.apache.maven.plugins:maven-antrun-plugin` got rid of the warning.

@jlowe @revans2

Authors:
  - Rong Ou (@rongou)

Approvers:
  - Robert (Bobby) Evans (@revans2)
  - Jason Lowe (@jlowe)

URL: #7393
  • Loading branch information
rongou authored Feb 17, 2021
1 parent ad6901c commit d180213
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>cmake</id>
Expand Down

0 comments on commit d180213

Please sign in to comment.