Skip to content

Commit

Permalink
Tagging 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcashman committed Nov 30, 2022
1 parent 9a45fc0 commit 42da883
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[2.1.0]
Update to Gradle 7.5.1

[2.0.0]
- Change plugin structure to allow custom push tasks (big thanks to klianc09)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath group: 'org.mini2Dx', name: 'butler', version: '2.0.0'
classpath group: 'org.mini2Dx', name: 'butler', version: '2.1.0'
}
}
```
Expand Down Expand Up @@ -123,7 +123,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath group: 'org.mini2Dx', name: 'butler', version: '2.0.0'
classpath group: 'org.mini2Dx', name: 'butler', version: '2.1.0'
}
}
```
Expand Down
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.21.2'
classpath 'de.marcphilipp.gradle:nexus-publish-plugin:0.4.0'
}
}

Expand All @@ -16,7 +18,16 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

if(project.hasProperty('ossrhUser') && project.hasProperty("release")) {
apply plugin: "io.codearte.nexus-staging"
apply plugin: "de.marcphilipp.nexus-publish"

nexusStaging {
packageGroup = 'org.mini2Dx'
username = ossrhUser
password = ossrhPassword
numberOfRetries = 30
delayBetweenRetriesInMillis = 5000
}
}

group = 'org.mini2Dx'
Expand Down Expand Up @@ -122,5 +133,9 @@ if(project.hasProperty('ossrhUser') && project.hasProperty("release")) {
}
}
}

signing {
sign publishing.publications
}
}
}

0 comments on commit 42da883

Please sign in to comment.