We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the build is made in the pom.xml file using:
pom.xml
<plugin> <groupId>com.google.code.play2-maven-plugin</groupId> <artifactId>play2-maven-plugin</artifactId> <version>1.0.0-rc5</version> <executions> <execution> <goals> <goal>dist</goal> </goals> <phase>package</phase> </execution> </executions> </plugin>
This could be replaced by:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.6.1</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> </execution> </executions> </plugin>
This needs to be tested further to make sure that this is the correct alternative.
The text was updated successfully, but these errors were encountered:
Prototype using maven-dependency-plugin to test Coreoz/Plume-archetyp…
7686921
…es#7
No branches or pull requests
Currently, the build is made in the
pom.xml
file using:This could be replaced by:
This needs to be tested further to make sure that this is the correct alternative.
The text was updated successfully, but these errors were encountered: