简体   繁体   中英

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.

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM