|
10 | 10 |
|
11 | 11 | <name>MCSS API Wrapper</name>
|
12 | 12 | <description>A Wrapper for the API of McServerSoft (MCSS)</description>
|
| 13 | + <url>https://github.com/Les-Projects/mcss-api-java</url> |
13 | 14 |
|
14 | 15 |
|
15 | 16 | <repositories>
|
|
76 | 77 | <id>ossrh</id>
|
77 | 78 | <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
78 | 79 | </snapshotRepository>
|
79 |
| - <repository> |
| 80 | + <!--<repository> |
80 | 81 | <id>ossrh</id>
|
81 | 82 | <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
82 |
| - </repository> |
| 83 | + </repository> --> |
83 | 84 | </distributionManagement>
|
84 | 85 |
|
| 86 | + |
| 87 | + |
| 88 | + <profiles> |
| 89 | + <profile> |
| 90 | + <id>release</id> |
| 91 | + <build> |
| 92 | + <plugins> |
| 93 | + <plugin> |
| 94 | + <groupId>org.apache.maven.plugins</groupId> |
| 95 | + <artifactId>maven-source-plugin</artifactId> |
| 96 | + <version>2.2.1</version> |
| 97 | + <executions> |
| 98 | + <execution> |
| 99 | + <id>attach-sources</id> |
| 100 | + <goals> |
| 101 | + <goal>jar-no-fork</goal> |
| 102 | + </goals> |
| 103 | + </execution> |
| 104 | + </executions> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 109 | + <version>3.3.1</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <id>attach-javadocs</id> |
| 113 | + <goals> |
| 114 | + <goal>jar</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
| 119 | + <plugin> |
| 120 | + <groupId>org.apache.maven.plugins</groupId> |
| 121 | + <artifactId>maven-gpg-plugin</artifactId> |
| 122 | + <version>3.0.1</version> |
| 123 | + <executions> |
| 124 | + <execution> |
| 125 | + <id>sign-artifacts</id> |
| 126 | + <phase>verify</phase> |
| 127 | + <goals> |
| 128 | + <goal>sign</goal> |
| 129 | + </goals> |
| 130 | + </execution> |
| 131 | + </executions> |
| 132 | + </plugin> |
| 133 | + </plugins> |
| 134 | + </build> |
| 135 | + </profile> |
| 136 | + </profiles> |
| 137 | + |
85 | 138 | <build>
|
86 | 139 | <plugins>
|
87 | 140 | <plugin>
|
|
134 | 187 | <plugin>
|
135 | 188 | <groupId>org.sonatype.plugins</groupId>
|
136 | 189 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
137 |
| - <version>1.6.7</version> |
| 190 | + <version>1.6.13</version> |
138 | 191 | <extensions>true</extensions>
|
139 | 192 | <configuration>
|
140 | 193 | <serverId>ossrh</serverId>
|
141 | 194 | <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
142 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 195 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
143 | 196 | </configuration>
|
144 | 197 | </plugin>
|
145 |
| - <plugin> |
| 198 | + <!--<plugin> |
146 | 199 | <groupId>org.apache.maven.plugins</groupId>
|
147 | 200 | <artifactId>maven-release-plugin</artifactId>
|
148 | 201 | <version>2.5.3</version>
|
|
152 | 205 | <releaseProfiles>release</releaseProfiles>
|
153 | 206 | <goals>deploy</goals>
|
154 | 207 | </configuration>
|
155 |
| - </plugin> |
| 208 | + </plugin> --> |
156 | 209 | </plugins>
|
157 | 210 | </build>
|
158 | 211 | </project>
|
0 commit comments