Skip to content

Commit

Permalink
Release 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GiantTreeLP committed Jan 29, 2022
1 parent 1197754 commit ddadee9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ the [ProGuard Maven plugin](https://wvengen.github.io/proguard-maven-plugin/).
<plugin>
<groupId>com.github.gianttreelp.proguardservicesmapper</groupId>
<artifactId>proguard-service-mapper-maven-plugin</artifactId>
<version>1.1-SNAPSHOT</version> <!-- Update with the version you want to use, preferably the latest -->
<version>1.1</version> <!-- Update with the version you want to use, preferably the latest -->
<executions>
<execution>
<phase>package</phase>
Expand All @@ -69,8 +69,10 @@ the [ProGuard Gradle plugin](https://github.com/Guardsquare/proguard).
### Example usage in Gradle with the ProGuard Gradle plugin and the Shadow plugin

```kotlin
dependencies {
classpath("com.github.gianttreelp.proguardservicesmapper:proguard-services-mapper-gradle:1.1-SNAPSHOT")
buildscript {
dependencies {
classpath("com.github.gianttreelp.proguardservicesmapper:proguard-services-mapper-gradle:1.1")
}
}

register<com.github.gianttreelp.proguardservicesmapper.gradle.ProguardServicesMapperTask>("mapServices") {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = "com.github.gianttreelp.proguardservicesmapper"
version = "1.1-SNAPSHOT"
version = "1.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion proguard-services-mapper-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = parent?.group ?: "com.github.gianttreelp"
version = parent?.version ?: "1.1-SNAPSHOT"
version = parent?.version ?: "1.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion proguard-services-mapper-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = parent?.group ?: "com.github.gianttreelp"
version = parent?.version ?: "1.1-SNAPSHOT"
version = parent?.version ?: "1.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion proguard-services-mapper-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
}

group = parent?.group ?: "com.github.gianttreelp"
version = parent?.version ?: "1.1-SNAPSHOT"
version = parent?.version ?: "1.1"

dependencies {
implementation(gradleApi())
Expand Down
4 changes: 2 additions & 2 deletions proguard-services-mapper-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.gianttreelp.proguardservicesmapper</groupId>
<artifactId>proguard-services-mapper-maven</artifactId>
<version>1.1-SNAPSHOT</version>
<version>1.1</version>
<packaging>maven-plugin</packaging>

<name>proguard-services-mapper</name>
Expand Down Expand Up @@ -76,7 +76,7 @@
<dependency>
<groupId>com.github.gianttreelp.proguardservicesmapper</groupId>
<artifactId>proguard-services-mapper-common</artifactId>
<version>1.1-SNAPSHOT</version>
<version>1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit ddadee9

Please sign in to comment.