Prasad
Prasad

Reputation: 636

Release management using SBT

I am new to Scala, we are doing a prototype using Scala and SBT as build tool. Can someone help me how to release WAR files using SBT to artifactory. In JAVA I am using maven and specifying artifactory urls in settings.xml and I am specifying snapshot or release versions in pom file. I have no clue how to achieve this functionality using SBT.

Thanks in advance

Prasad

Upvotes: 1

Views: 136

Answers (1)

johanandren
johanandren

Reputation: 11479

As ajozwik said in his comments, check the docs first so you understand the basics, the docs are pretty good these days: http://www.scala-sbt.org/0.13/tutorial/index.html

For packaging .war artifacts from sbt, I think the xsbt-web-plugin is your friend: https://github.com/earldouglas/xsbt-web-plugin

Upvotes: 2

Related Questions