|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | | - <groupId>io.socket</groupId> |
| 4 | + <groupId>io.github.robinpcrd</groupId> |
4 | 5 | <artifactId>socket.io-client</artifactId> |
5 | | - <version>2.2.0-SNAPSHOT</version> |
| 6 | + <version>2.2.0</version> |
6 | 7 | <packaging>jar</packaging> |
7 | 8 | <name>socket.io-client</name> |
8 | | - <description>Socket.IO Client Library for Java</description> |
9 | | - <url>https://github.com/socketio/socket.io-client-java</url> |
| 9 | + <description>Socket.IO Client Library for Java (Fork)</description> |
| 10 | + <url>https://github.com/RobinPcrd/socket.io-client-java</url> |
10 | 11 |
|
| 12 | + <!-- |
11 | 13 | <parent> |
12 | 14 | <groupId>org.sonatype.oss</groupId> |
13 | 15 | <artifactId>oss-parent</artifactId> |
14 | 16 | <version>7</version> |
15 | 17 | </parent> |
| 18 | + --> |
16 | 19 |
|
17 | 20 | <properties> |
18 | 21 | <github.global.server>github</github.global.server> |
|
27 | 30 | </licenses> |
28 | 31 |
|
29 | 32 | <scm> |
30 | | - <url>https://github.com/socketio/socket.io-client-java</url> |
31 | | - <connection>scm:git:https://github.com/socketio/socket.io-client-java.git</connection> |
32 | | - <developerConnection>scm:git:https://github.com/socketio/socket.io-client-java.git</developerConnection> |
| 33 | + <url>https://github.com/RobinPcrd/socket.io-client-java</url> |
| 34 | + <connection>scm:git:https://github.com/RobinPcrd/socket.io-client-java.git</connection> |
| 35 | + <developerConnection>scm:git:https://github.com/RobinPcrd/socket.io-client-java.git</developerConnection> |
33 | 36 | <tag>HEAD</tag> |
34 | 37 | </scm> |
35 | 38 |
|
|
39 | 42 | <name>Naoyuki Kanezawa</name> |
40 | 43 | <email>naoyuki.kanezawa@gmail.com</email> |
41 | 44 | </developer> |
| 45 | + <developer> |
| 46 | + <id>robinpcrd</id> |
| 47 | + <name>Robin Picard</name> |
| 48 | + <email>robin.picard.dev@gmail.com</email> |
| 49 | + </developer> |
42 | 50 | </developers> |
43 | 51 |
|
| 52 | + <!-- |
44 | 53 | <repositories> |
45 | 54 | <repository> |
46 | 55 | <id>sonatype-oss-public</id> |
|
53 | 62 | </snapshots> |
54 | 63 | </repository> |
55 | 64 | </repositories> |
| 65 | + --> |
56 | 66 |
|
57 | 67 | <prerequisites> |
58 | | - <maven>3.0.4</maven> |
| 68 | + <maven>3.6.3</maven> |
59 | 69 | </prerequisites> |
60 | 70 |
|
61 | 71 | <dependencies> |
|
89 | 99 | </dependency> |
90 | 100 | </dependencies> |
91 | 101 |
|
| 102 | + <!-- |
92 | 103 | <distributionManagement> |
93 | 104 | <snapshotRepository> |
94 | | - <id>ossrh</id> |
95 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 105 | + <id>central</id> |
| 106 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
96 | 107 | </snapshotRepository> |
97 | 108 | <repository> |
98 | | - <id>ossrh</id> |
99 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 109 | + <id>central</id> |
| 110 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
100 | 111 | </repository> |
101 | 112 | </distributionManagement> |
| 113 | + --> |
102 | 114 |
|
103 | 115 | <build> |
104 | 116 | <plugins> |
|
129 | 141 | </goals> |
130 | 142 | </execution> |
131 | 143 | </executions> |
| 144 | + <configuration> |
| 145 | + <gpgArguments> |
| 146 | + <arg>--pinentry-mode</arg> |
| 147 | + <arg>loopback</arg> |
| 148 | + </gpgArguments> |
| 149 | + </configuration> |
132 | 150 | </plugin> |
133 | 151 | <plugin> |
134 | 152 | <groupId>org.apache.maven.plugins</groupId> |
|
167 | 185 | <goals>deploy</goals> |
168 | 186 | </configuration> |
169 | 187 | </plugin> |
| 188 | + <!-- |
170 | 189 | <plugin> |
171 | 190 | <groupId>org.sonatype.plugins</groupId> |
172 | 191 | <artifactId>nexus-staging-maven-plugin</artifactId> |
173 | 192 | <version>1.6.7</version> |
174 | 193 | <extensions>true</extensions> |
175 | 194 | <configuration> |
176 | | - <serverId>ossrh</serverId> |
| 195 | + <serverId>central</serverId> |
177 | 196 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
178 | 197 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
179 | 198 | </configuration> |
180 | 199 | </plugin> |
| 200 | + --> |
181 | 201 | <plugin> |
182 | 202 | <groupId>org.codehaus.mojo</groupId> |
183 | 203 | <artifactId>exec-maven-plugin</artifactId> |
|
247 | 267 | <showDeprecation>true</showDeprecation> |
248 | 268 | </configuration> |
249 | 269 | </plugin> |
| 270 | + <plugin> |
| 271 | + <groupId>org.sonatype.central</groupId> |
| 272 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 273 | + <version>0.6.0</version> |
| 274 | + <extensions>true</extensions> |
| 275 | + <configuration> |
| 276 | + <publishingServerId>central</publishingServerId> |
| 277 | + <autoPublish>true</autoPublish> |
| 278 | + <waitUntil>uploaded</waitUntil> |
| 279 | + </configuration> |
| 280 | + </plugin> |
250 | 281 | </plugins> |
251 | 282 | </build> |
252 | 283 | </project> |
0 commit comments