dark_gf
dark_gf

Reputation: 736

Maven and play framework 2 - Unknown packaging: play2

I've trying to integrate maven and play2 by this guide http://cescoffier.github.io/maven-play2-plugin/maven/release/quickstart.html , but when i try to build project maven says:

Unknown packaging: play2

How to resolve this issue? Thanks.

Upvotes: 3

Views: 761

Answers (1)

Marcus Linke
Marcus Linke

Reputation: 189

Maybe you forgot <extensions>true</extensions> within the plugin configuration?

<plugin>
   <groupId>de.akquinet.innovation.play2</groupId>
   <artifactId>play2-maven-plugin</artifactId>
   <version>1.2.1</version>
   <extensions>true</extensions>
</plugin>

Upvotes: 2

Related Questions