Skip to content

Commit 1a7320e

Browse files
committed
Remove older publishing plugin, make buildable
1 parent 1521032 commit 1a7320e

File tree

4 files changed

+10
-18
lines changed

4 files changed

+10
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ public class Example {
4242
<dependency>
4343
<groupId>org.kitteh.irc</groupId>
4444
<artifactId>client-lib</artifactId>
45-
<version>9.0.0</version>
45+
<version>10.0.0-SNAPSHOT</version>
4646
</dependency>
4747
```
4848

49-
```groovy
50-
implementation "org.kitteh.irc:client-lib:9.0.0"
49+
```kotlin
50+
implementation("org.kitteh.irc:client-lib:10.0.0-SNAPSHOT")
5151
```
5252

5353
Releases are available on Maven Central.

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ simple as adding the lines below to your pom.xml file:
7070
<dependency>
7171
<groupId>org.kitteh.irc</groupId>
7272
<artifactId>client-lib</artifactId>
73-
<version>9.0.0</version>
73+
<version>10.0.0-SNAPSHOT</version>
7474
<scope>...</scope>
7575
</dependency>
7676
```
7777

7878
Or, for Gradle:
7979

80-
```
81-
implementation "org.kitteh.irc:client-lib:9.0.0"
80+
```kotlin
81+
implementation("org.kitteh.irc:client-lib:10.0.0-SNAPSHOT")
8282
```
8383

8484
## Events

pom.xml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,9 @@
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-gpg-plugin</artifactId>
199199
<version>3.2.8</version>
200+
<configuration>
201+
<keyname>0EA5EFF9B1594857B5A69FB39E40DA149C8B6661</keyname>
202+
</configuration>
200203
<executions>
201204
<execution>
202205
<id>sign-artifacts</id>
@@ -207,17 +210,6 @@
207210
</execution>
208211
</executions>
209212
</plugin>
210-
<plugin>
211-
<groupId>org.sonatype.plugins</groupId>
212-
<artifactId>nexus-staging-maven-plugin</artifactId>
213-
<version>1.7.0</version>
214-
<extensions>true</extensions>
215-
<configuration>
216-
<serverId>ossrh</serverId>
217-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
218-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
219-
</configuration>
220-
</plugin>
221213
</plugins>
222214
</build>
223215
</profile>

src/main/java/org/kitteh/irc/client/library/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public interface Client extends ClientLinked {
9696
* Builds {@link Client}s. Create a builder with {@link Client#builder()}.
9797
* <p>
9898
* The default built client connects securely via port 6697. See {@link
99-
* Server##port(int, Server.SecurityType)} to disable, or the other secure-prefixed methods in
99+
* Server#port(int, Server.SecurityType)} to disable, or the other secure-prefixed methods in
100100
* this builder to fully utilize the feature. Note that the default
101101
* TrustManagerFactory relies on your local trust store. The default Oracle
102102
* trust store does not accept self-signed certificates.

0 commit comments

Comments
 (0)