Skip to content
New issue

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

Replace play2-maven-plugin by maven-dependency-plugin #7

Open
amanteaux opened this issue Dec 14, 2023 · 0 comments
Open

Replace play2-maven-plugin by maven-dependency-plugin #7

amanteaux opened this issue Dec 14, 2023 · 0 comments
Milestone

Comments

@amanteaux
Copy link
Member

Currently, the build is made in the pom.xml file using:

<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.

@amanteaux amanteaux added this to the V5 milestone Jan 18, 2024
amanteaux added a commit to Coreoz/Plume-showcase that referenced this issue Nov 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant