The scala-maven-plugin (previously maven-scala-plugin) is used for compiling/testing/running/documenting Scala code in Maven.
[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=davidB&url=https://github.com/davidB/scala-maven-plugin&title=scala-maven-plugin&language=&tags=github&category=software)Currently, you need Maven 3.x & JDK 8 to build the plugin, create the site, and run integration-test
.
mvn package
: generate jarmvn site
: generate the plugin websitemvn integration-test
:mvn package
+ run all integration test- note: to run test_scalaHome: you have to set
scala.home
property insrc/it/test_scalaHome/pom.xml
to correspond to your environment. See Build section above for a simple setup.
- note: to run test_scalaHome: you have to set
mvn invoker:run -Dinvoker.test=test1
: run integration test 'test1' useful for tuning/debugmvn install
:mvn integration-test
+ publish on local maven repositorymvn install -Dmaven.test.skip=true
:mvn install
without run of unit test and run of integration test- release :
mvn release:prepare && mvn release:perform
: to publish on staging repository via pluginmvn site package source:jar javadoc:jar install:install gpg:sign deploy:deploy changes:announcement-generate -Dmaven.test.skip=true -DperformRelease=true
: manual- connect to http://oss.sonatype.org/ close and release the request(about scala-maven-plugin) in staging repositories
- browse the updated mvnsite (check version into samples, ...)
- email the content of
target/checkout/target/announcement/announcement.md.vm
to [email protected], and to [email protected] (same subject but without tag part)
- close issues from https://github.com/davidB/scala-maven-plugin/issues/
- try to integrate the "dependency builder" of SBT 0.10
- try to use aether to manage dependencies
- refactor :
- reduce copy-paste
- file path management can be improve (a lot)
- clean the code