Skip to content

Commit ac3d5b9

Browse files
committed
release 1.1.0;
1 parent 478e8c9 commit ac3d5b9

3 files changed

Lines changed: 18 additions & 19 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ Maven:
2727
<dependency>
2828
<groupId>io.github.autocomplete1</groupId>
2929
<artifactId>jPowerShell2</artifactId>
30-
<version>1.0.3</version>
30+
<version>1.1.0</version>
3131
<scope>compile</scope>
3232
</dependency>
3333
```
3434

3535
Gradle:
3636
```
37-
implementation 'io.github.autocomplete1:jPowerShell2:1.0.3'
37+
implementation 'io.github.autocomplete1:jPowerShell2:1.1.0'
3838
```
3939

4040
Instead, you can direct download the JAR file and add it to your classpath.

build.gradle

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ plugins {
22
id "java"
33
id "signing"
44
id "maven-publish"
5-
id "io.github.gradle-nexus.publish-plugin" version "2.0.0"
65
}
76

87
group = 'io.github.autocomplete1'
@@ -76,19 +75,6 @@ project.plugins.withType(MavenPublishPlugin).all {
7675
}
7776
}
7877

79-
nexusPublishing {
80-
repositories {
81-
sonatype {
82-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
83-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
84-
username.set(project.findProperty("ossrhUsername")?.toString() ?: System.getenv("OSSRH_USERNAME"))
85-
password.set(project.findProperty("ossrhPassword")?.toString() ?: System.getenv("OSSRH_PASSWORD"))
86-
}
87-
}
88-
connectTimeout = Duration.ofMinutes(3)
89-
clientTimeout = Duration.ofMinutes(3)
90-
}
91-
9278
publishing {
9379
repositories {
9480
maven {

settings.gradle

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1-
/*
2-
* This file was generated by the Gradle 'init' task.
3-
*/
1+
pluginManagement {
2+
repositories {
3+
gradlePluginPortal()
4+
}
5+
}
6+
7+
plugins {
8+
id "com.gradleup.nmcp.settings" version "1.4.3"
9+
}
410

511
rootProject.name = 'jPowerShell2'
12+
13+
nmcpSettings {
14+
centralPortal {
15+
username = providers.gradleProperty("ossrhUsername").getOrNull() ?: System.getenv("OSSRH_USERNAME")
16+
password = providers.gradleProperty("ossrhPassword").getOrNull() ?: System.getenv("OSSRH_PASSWORD")
17+
}
18+
}

0 commit comments

Comments
 (0)