Questions tagged [sbt-release]

sbt-release is an sbt plugin that enables the user to create a customizable release process for the project.

sbt-release is an sbt plugin that enables the user to create a customizable release process for the project.

Advertised features of the sbt-release plugin include:

  1. cross-building;
  2. the ability to skip tests;
  3. automatic versioning;
  4. customized messages for source control;

More information the sbt-plugin can be found here while the sbt homepage is found here.

33 questions
0
votes
1 answer

sbt-release publish artifact to wrong repository

So I'm trying to use sbt-release, and I'm having issues where it's publishing the artifact to my snapshot repository, and not the release repository. val Organization = "com.mycompany" val Name = "My Service" val Version =…
nickn
  • 184
  • 1
  • 13
0
votes
1 answer

execute a "release" command from inside a task in sbt

I am using "sbt-releases" and need to execute "release" from inside a task, but the problem is that "release" is a command not task. so is it possible to execute a command from inside a task in sbt ? Why I need to execute a release from inside a…
Mohamed Kamaly
  • 127
  • 3
  • 10
0
votes
0 answers

sbt-release publish tar.gz

I want to use sbt-release to publish tar.gz file to our artifactory server, I followed the code ingoogle groups,but they are using zip artifact. I need the tar.gz due to file permissions in linux. How to achieve this in sbt-release?
Diogo
  • 543
  • 6
  • 12
1 2
3