Skip to content

Commit

Permalink
latest dep versions
Browse files Browse the repository at this point in the history
  • Loading branch information
trevjonez committed Dec 28, 2017
1 parent cdd5985 commit 78bd49c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.5.0'
classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.5.1'
}
}
```
Expand Down Expand Up @@ -89,7 +89,7 @@ The `composer` configuration is added to your project once a `ComposerTask` has

```groovy
dependencies {
composer "com.gojuno.composer:composer:0.2.8"
composer "com.gojuno.composer:composer:0.2.9"
}
```

Expand All @@ -107,7 +107,7 @@ version of gradle is 4.0 or whatever minimum is mandated by the android gradle p

Composer plugin version | Gradle version | Android plugin version
----- | ---- | -----
0.5.0 | 4.3.1 | 3.0.0
0.5.1 | 4.3.1 | 3.0.1

License
-------
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

buildscript {
ext.kotlin_version = '1.1.51'
ext.kotlin_version = '1.2.10'

repositories {
jcenter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ open class ComposerTask : JavaExec(), ComposerConfigurator {
companion object {
private const val MAIN_CLASS = "com.gojuno.composer.MainKt"
private const val COMPOSER = "composer"
private const val ARTIFACT_DEP = "com.gojuno.composer:composer:0.2.8"
private const val ARTIFACT_DEP = "com.gojuno.composer:composer:0.2.9"
val DEFAULT_OUTPUT_DIR = File("composer-output")

fun createComposerConfiguration(project: Project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ task runComposer(type: ComposerTask) {
dependencies {
//optional classpath config
composer "com.gojuno.composer:composer:0.2.8"
composer "com.gojuno.composer:composer:0.2.9"
}
""".writeTo(buildFile)

Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ gradlePlugin {

dependencies {
compile project(':core')
compile group: 'com.android.tools.build', name: 'gradle', version: '3.0.0'
compile group: 'com.android.tools.build', name: 'gradle', version: '3.0.1'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/test/resources/vanilla/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dependencies {
androidTestCompile 'com.android.support.test.espresso:espresso-core:3.0.0'
androidTestCompile 'com.android.support.test:runner:1.0.0'

composer "com.gojuno.composer:composer:0.2.8"
composer "com.gojuno.composer:composer:0.2.9"
}

composer {
Expand Down

0 comments on commit 78bd49c

Please sign in to comment.