|
1 | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2 |
| - <parent> |
3 |
| - <groupId>org.sonatype.oss</groupId> |
4 |
| - <artifactId>oss-parent</artifactId> |
5 |
| - <version>5</version> |
6 |
| - </parent> |
7 | 2 | <modelVersion>4.0.0</modelVersion>
|
8 | 3 | <groupId>io.swagger</groupId>
|
9 | 4 | <artifactId>swagger-codegen-project</artifactId>
|
10 | 5 | <packaging>pom</packaging>
|
11 | 6 | <name>swagger-codegen-project</name>
|
12 |
| - <version>2.4.44</version> |
| 7 | + <description>swagger-codegen-project</description> |
13 | 8 | <url>https://github.com/swagger-api/swagger-codegen</url>
|
| 9 | + <version>2.4.44</version> |
14 | 10 | <scm>
|
15 | 11 | < connection>scm:git: [email protected]:swagger-api/swagger-codegen.git</ connection>
|
16 | 12 | < developerConnection>scm:git: [email protected]:swagger-api/swagger-codegen.git</ developerConnection>
|
|
32 | 28 | <system>github</system>
|
33 | 29 | <url>https://github.com/swagger-api/swagger-codegen/issues</url>
|
34 | 30 | </issueManagement>
|
35 |
| - <mailingLists> |
36 |
| - <mailingList> |
37 |
| - <name>swagger-swaggersocket</name> |
38 |
| - <archive>https://groups.google.com/forum/#!forum/swagger-swaggersocket</archive> |
39 |
| - </mailingList> |
40 |
| - </mailingLists> |
41 | 31 | <licenses>
|
42 | 32 | <license>
|
43 | 33 | <name>Apache License 2.0</name>
|
|
176 | 166 | <artifactId>maven-site-plugin</artifactId>
|
177 | 167 | <version>3.12.0</version>
|
178 | 168 | </plugin>
|
179 |
| - <plugin> |
180 |
| - <groupId>org.apache.maven.plugins</groupId> |
181 |
| - <artifactId>maven-release-plugin</artifactId> |
182 |
| - <version>2.5.3</version> |
183 |
| - </plugin> |
184 |
| - |
185 | 169 | <plugin>
|
186 | 170 | <groupId>org.apache.maven.plugins</groupId>
|
187 | 171 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
237 | 221 | </execution>
|
238 | 222 | </executions>
|
239 | 223 | </plugin>
|
| 224 | + <plugin> |
| 225 | + <groupId>org.sonatype.central</groupId> |
| 226 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 227 | + <version>0.7.0</version> |
| 228 | + <extensions>true</extensions> |
| 229 | + <configuration> |
| 230 | + <publishingServerId>central</publishingServerId> |
| 231 | + <autoPublish>true</autoPublish> |
| 232 | + <waitUntil>published</waitUntil> |
| 233 | + <waitMaxTime>3600</waitMaxTime> |
| 234 | + </configuration> |
| 235 | + </plugin> |
240 | 236 | </plugins>
|
241 | 237 | <pluginManagement>
|
242 | 238 | <plugins>
|
|
245 | 241 | <artifactId>formatter-maven-plugin</artifactId>
|
246 | 242 | <version>0.5.2</version>
|
247 | 243 | </plugin>
|
| 244 | + <plugin> |
| 245 | + <groupId>org.apache.maven.plugins</groupId> |
| 246 | + <artifactId>maven-gpg-plugin</artifactId> |
| 247 | + <version>1.6</version> |
| 248 | + <configuration> |
| 249 | + <!-- Prevent `gpg` from using pinentry programs --> |
| 250 | + <gpgArguments> |
| 251 | + <arg>--pinentry-mode</arg> |
| 252 | + <arg>loopback</arg> |
| 253 | + </gpgArguments> |
| 254 | + </configuration> |
| 255 | + </plugin> |
248 | 256 | </plugins>
|
249 | 257 | </pluginManagement>
|
250 | 258 | </build>
|
|
314 | 322 | </build>
|
315 | 323 | </profile>
|
316 | 324 | <profile>
|
317 |
| - <id>release-sign-artifacts</id> |
| 325 | + <id>release</id> |
318 | 326 | <activation>
|
319 | 327 | <property>
|
320 | 328 | <name>performRelease</name>
|
|
1047 | 1055 | </dependency>
|
1048 | 1056 | </dependencies>
|
1049 | 1057 | </dependencyManagement>
|
1050 |
| - <repositories> |
1051 |
| - <repository> |
1052 |
| - <id>sonatype-snapshots</id> |
1053 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
1054 |
| - <snapshots> |
1055 |
| - <enabled>true</enabled> |
1056 |
| - </snapshots> |
1057 |
| - </repository> |
1058 |
| - </repositories> |
1059 | 1058 | <properties>
|
1060 | 1059 | <maven.compiler.release>8</maven.compiler.release>
|
1061 | 1060 | <swagger-parser-version>1.0.71</swagger-parser-version>
|
|
1083 | 1082 | <snakeyaml-version>2.2</snakeyaml-version>
|
1084 | 1083 | <httpclient-version>4.5.14</httpclient-version>
|
1085 | 1084 | <json-version>20231013</json-version>
|
| 1085 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
1086 | 1086 | </properties>
|
1087 | 1087 | </project>
|
0 commit comments