Skip to content

Commit

Permalink
Merge pull request #2 from stempler/master
Browse files Browse the repository at this point in the history
prepare 0.1.0 release
  • Loading branch information
stempler authored Sep 15, 2017
2 parents 6c47ca8 + 4f43065 commit 479751e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,18 @@ Usage
buildscript {
repositories {
jcenter()
maven {
url 'https://artifactory.wetransform.to/artifactory/libs-release-local'
}
maven {
url 'https://artifactory.wetransform.to/artifactory/libs-snapshot-local'
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
classpath 'to.wetransform:gradle-swarm-composer:1.0.0-SNAPSHOT'
classpath 'to.wetransform:gradle-swarm-composer:0.1.0'
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sourceCompatibility = '1.8'
targetCompatibility = '1.8'

group = 'to.wetransform'
version = '1.0.0-SNAPSHOT'
version = '0.1.0'

repositories {
jcenter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ipsum - or what?'''

String password = "Goodbye"

def encrypted = c.encrypt(copy, password)
def encrypted = c.encrypt(copy, password, null)
def copyEncrypted = new JsonSlurper().parseText(JsonOutput.toJson(encrypted))

assert encrypted == copyEncrypted
Expand Down

0 comments on commit 479751e

Please sign in to comment.