Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Mar 20, 2023
1 parent 3056334 commit 4463f29
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}
if (file('../roborazzi-gradle-plugin/build/libs/roborazzi-gradle-plugin.jar').exists()) {
// for sync
apply plugin: 'io.github.takahirom.roborazzi.gradle'
apply plugin: 'io.github.takahirom.roborazzi'
}

android {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ kotlin.code.style=official
android.nonTransitiveRClass=true

GROUP=io.github.takahirom.roborazzi
VERSION_NAME=1.0.0-alpha-2
VERSION_NAME=1.0.0-alpha-3

SONATYPE_AUTOMATIC_RELEASE=true

Expand Down
8 changes: 7 additions & 1 deletion roborazzi-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ apply plugin: 'java-gradle-plugin'
gradlePlugin {
plugins {
roborazzi {
id = 'io.github.takahirom.roborazzi.gradle'
id = 'io.github.takahirom.roborazzi'
implementationClass = 'io.github.takahirom.roborazzi.RoborazziPlugin'
}
}
}

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}

dependencies {
compileOnly gradleApi()
compileOnly "com.android.tools.build:gradle:7.3.1"
Expand Down

0 comments on commit 4463f29

Please sign in to comment.