File tree Expand file tree Collapse file tree 4 files changed +10
-18
lines changed
src/main/java/org/kitteh/irc/client/library Expand file tree Collapse file tree 4 files changed +10
-18
lines changed Original file line number Diff line number Diff 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
5353Releases are available on Maven Central.
Original file line number Diff line number Diff 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
7878Or, 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
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments