Skip to content

Commit

Permalink
Prepare for release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Gutierrez committed Sep 3, 2018
1 parent c3224d8 commit 097d062
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion AndroidConsumer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
maven { url uri('../../repo') }
}
dependencies {
classpath 'com.karumi.kotlinsnapshot:plugin:0.3.0-SNAPSHOT'
classpath 'com.karumi.kotlinsnapshot:plugin:0.3.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions KotlinConsumer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.karumi.kotlinsnapshot:plugin:0.3.0-SNAPSHOT'
classpath 'com.karumi.kotlinsnapshot:plugin:0.3.0'
}
}

Expand All @@ -15,7 +15,7 @@ plugins {
}

group 'com.karumi.kotlinsnapshot'
version '0.3.0-SNAPSHOT'
version '0.3.0'

apply plugin: 'com.karumi.kotlin-snapshot'

Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.karumi.kotlinsnapshot'
version '0.3.0-SNAPSHOT'
version '0.3.0'

buildscript {
ext.kotlin_version = '1.2.10'
Expand Down
2 changes: 1 addition & 1 deletion core/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ POM_NAME=core
POM_ARTIFACT_ID=core
POM_PACKAGING=jar

VERSION_NAME=0.3.0-SNAPSHOT
VERSION_NAME=0.3.0
VERSION_CODE=000300
GROUP=com.karumi.kotlinsnapshot

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ POM_NAME=core
POM_ARTIFACT_ID=core
POM_PACKAGING=jar

VERSION_NAME=0.3.0-SNAPSHOT
VERSION_NAME=0.3.0
VERSION_CODE=000300
GROUP=com.karumi.kotlinsnapshot

Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.karumi.kotlinsnapshot'
version '0.3.0-SNAPSHOT'
version '0.3.0'

buildscript {
ext.kotlin_version = '1.2.10'
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ POM_NAME=plugin
POM_ARTIFACT_ID=plugin
POM_PACKAGING=jar

VERSION_NAME=0.3.0-SNAPSHOT
VERSION_NAME=0.3.0
VERSION_CODE=000300
GROUP=com.karumi.kotlinsnapshot

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ open class KotlinSnapshotPlugin : Plugin<Project> {
project.gradle.addListener(object : DependencyResolutionListener {
override fun beforeResolve(dependencies: ResolvableDependencies?) {
val dependency = project.dependencies
.create("com.karumi.kotlinsnapshot:core:0.3.0-SNAPSHOT")
.create("com.karumi.kotlinsnapshot:core:0.3.0")
project.dependencies.add("testImplementation", dependency)
project.gradle.removeListener(this)
}
Expand Down

0 comments on commit 097d062

Please sign in to comment.