在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):absurdhero/play-pure-maven-plugin开源软件地址(OpenSource Url):https://github.com/absurdhero/play-pure-maven-plugin开源编程语言(OpenSource Language):Java 77.6%开源软件介绍(OpenSource Introduction):Play Pure-Maven PluginThis plugin allows Play Framework 2.4 projects to use the Maven build system instead of SBT. The plugin provides a solution to organizations who already have maven experience or would like to create a web application with Play Framework that plays well with other modules managed by maven. Currently, the plugin simply allows maven to compile *.scala.html, compile the routes file, and includes the "public" assets directory in your build. This plugin is easy to test out since it is possible to add it to an existing Play SBT project without modifying the directory structure. Features
Benefits
ChangesThe version number of this plugin always matches the version of the play framework it is built to work with. Additional changes in each release are noted below. 2.4.6Set targetJdk version to 1.8 in sample poms. 2.4.2Updated the the latest patch versions of scala and the scala-maven-plugin. 2.4.0It is recommended that you run This plugin requires Java 8 just as Play 2.4 now requires it. Route compilation was moved into its own mojo. When upgrading from earlier versions,
add Compiled objects are now written to target/scala-2.11 rather than target/scala-2.10 reflecting the update in scala versions. Generated source files were moved from Installing the Plugin From SourceClone the repository from git and install the plugin in your local maven repository (on disk) git clone https://github.com/absurdhero/play-pure-maven-plugin.git cd play-pure-maven-plugin mvn install -DskipTests=true Note: tests are skipped for the first execution because they depend on the plugin itself. Plugin MojosIn normal usage, you don't need to execute these directly. They run automatically during the right lifecycle phases when building a project that uses this plugin. To get much more detailed help after installing the plugin,
run
To-Do
LicenseThis project is licensed under the Apache License Version 2.0. A copy of the license is available in the LICENSE file. This software was originally developed at Nominum for internal use. Nominum allowed it to be released to the broader Play Framework community while supporting its future development by employing the author. Maven Project Setup (pom.xml)A bare-bones project can be found at src/test/resources/play-maven-project This working project uses the recommended Play 2.0 file layout. Refer to If you are a Maven maven, you can take a look at just the essential additions to the POM: In the plugins section: <plugin> <groupId>net.raboof.play</groupId> <artifactId>play-pure-maven-plugin</artifactId> <version>2.4.6</version> <executions> <execution> <goals> <goal>compile-routes</goal> <goal>compile-templates</goal> <goal>link-assets</goal> </goals> </execution> </executions> </plugin> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.2.2</version> <configuration> <!-- Use Zinc Compiler if running (https://github.com/typesafehub/zinc) --> <recompileMode>incremental</recompileMode> <useZincServer>true</useZincServer> <charset>UTF-8</charset> </configuration> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> <phase>compile</phase> </execution> <execution> <id>test-compile</id> <goals> <goal>testCompile</goal> </goals> <phase>test-compile</phase> </execution> <execution> <phase>process-resources</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> Add the Typesafe Repository so the Play Framework can be downloaded: <repositories> <repository> <id>typesafe</id> <url>http://repo.typesafe.com/typesafe/releases/</url> </repository> </repositories> In the dependencies section, include the Play modules you will depend on: <dependency> <groupId>com.typesafe.play</groupId> <artifactId>play_2.11</artifactId> <version>2.4.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.typesafe.play</groupId> <artifactId>play-java_2.11</artifactId> <version>2.4.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.typesafe.play</groupId> <artifactId>twirl-api_2.11</artifactId> <version>1.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.typesafe.play</groupId> <artifactId>play-test_2.11</artifactId> <version>2.4.6</version> <scope>test</scope> </dependency> |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论