Skip to content

Commit

Permalink
moved thigns around so they made more sense
Browse files Browse the repository at this point in the history
  • Loading branch information
johnscancella committed Feb 4, 2016
1 parent a82f618 commit 957a99f
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 11 deletions.
16 changes: 6 additions & 10 deletions bagger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,18 @@ distributions {
main{
contents {
//include the various user guides
into("doc") {
from "${rootDir.path}/bagger_distribution"
include "*.doc"
include "*.txt"
from("doc") {
into "doc"
}

//include the keystore used for signing jars
into("keystore") {
from "${rootDir.path}/scripts"
include "bagger.ks"
from("${rootDir.path}/keystore") {
into "keystore"
}

//include helpful scripts
into("bin") {
from "${rootDir.path}/scripts"
include "discoverJavaVersions.py"
from("scripts") {
into "bin"
}
}
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ subprojects{
ant.signjar(destDir: jar.destinationDir,
jar: jar.archivePath,
alias:"rdc",
keystore:"${rootDir.path}/scripts/bagger.ks",
keystore:"${rootDir.path}/keystore/bagger.ks",
storepass:"bagger-rdc",
preservelastmodified:"true")
}
Expand Down
File renamed without changes.

0 comments on commit 957a99f

Please sign in to comment.