-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update plugin to sbt 1.0.2 #9
Merged
Merged
Changes from 11 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
61a0deb
update to sbt 1.1 update all plugins
rhpvorderman 7ef8001
integrate new laika plugin
rhpvorderman 6ab6960
removed build.properties
rhpvorderman bd7f84e
fix runners
rhpvorderman 32c6c50
update plugin version
rhpvorderman ede3c56
start using plugin 1.0
rhpvorderman ce8eb98
Merge branch 'develop' into BIOPET-927
rhpvorderman 3d0e2b7
Merge branch 'develop' into BIOPET-927
rhpvorderman 17569ed
remove redundant plugins and add remove snapshot version
rhpvorderman 15853d3
scalafmt
rhpvorderman 9876a23
added scalafmt as option
rhpvorderman 50d8250
Fixed test launch and .get stuff'
rhpvorderman 4829988
cleanup mainclass running code
rhpvorderman b689d62
created dynamic task template
rhpvorderman b859bc0
generate tasks are now dynamic. But with code duplication
rhpvorderman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=0.13.16 | ||
sbt.version=1.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5") | ||
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.10") | ||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6") | ||
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.15") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1") | ||
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6") | ||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0") | ||
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1") | ||
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.7") | ||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0") | ||
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0") | ||
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.2") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3") | ||
addSbtPlugin("org.planet42" % "laika-sbt" % "0.7.0") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.1") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2") | ||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "4.0.0") | ||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "4.1.0") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
libraryDependencies += { "org.scala-sbt" % "scripted-plugin" % sbtVersion.value } | ||
libraryDependencies += { "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be done with a variable? This seems likely to break in next versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed