|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
7 | 7 | <groupId>com.qiniu</groupId>
|
8 |
| - <artifactId>qiniu-suits-java</artifactId> |
| 8 | + <artifactId>qsuits</artifactId> |
9 | 9 | <version>2.20</version>
|
10 | 10 | <name>qiniu-suits-java</name>
|
| 11 | + <description>qiniu-suits is a efficient tools for qiniu api implemented by java8.</description> |
| 12 | + <url>https://github.com/NigelWu95/qiniu-suits-java</url> |
| 13 | + |
| 14 | + <parent> |
| 15 | + <groupId>org.sonatype.oss</groupId> |
| 16 | + <artifactId>oss-parent</artifactId> |
| 17 | + <version>7</version> |
| 18 | + </parent> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>The Apache Software License, Version 2.0</name> |
| 23 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + |
| 27 | + <developers> |
| 28 | + <developer> |
| 29 | + <name>wubingheng</name> |
| 30 | + |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
| 34 | + <scm> |
| 35 | + <url>https://github.com/NigelWu95/qiniu-suits-java.git</url> |
| 36 | + < connection>scm:git: [email protected]:NigelWu95/qiniu-suits-java.git</ connection> |
| 37 | + < developerConnection>scm:git: [email protected]:NigelWu95/qiniu-suits-java.git</ developerConnection> |
| 38 | + </scm> |
11 | 39 |
|
12 | 40 | <properties>
|
13 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
115 | 143 | </plugins>
|
116 | 144 | </pluginManagement>
|
117 | 145 | </build>
|
| 146 | + |
| 147 | + <profiles> |
| 148 | + <profile> |
| 149 | + <id>release</id> |
| 150 | + <build> |
| 151 | + <pluginManagement> |
| 152 | + <plugins> |
| 153 | + <plugin> |
| 154 | + <groupId>org.sonatype.plugins</groupId> |
| 155 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 156 | + <version>1.6.3</version> |
| 157 | + <extensions>true</extensions> |
| 158 | + <configuration> |
| 159 | + <serverId>releases</serverId> |
| 160 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 161 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 162 | + </configuration> |
| 163 | + </plugin> |
| 164 | + <plugin> |
| 165 | + <groupId>org.apache.maven.plugins</groupId> |
| 166 | + <artifactId>maven-release-plugin</artifactId> |
| 167 | + <configuration> |
| 168 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 169 | + <useReleaseProfile>false</useReleaseProfile> |
| 170 | + <releaseProfiles>release</releaseProfiles> |
| 171 | + <goals>deploy</goals> |
| 172 | + </configuration> |
| 173 | + </plugin> |
| 174 | + <plugin> |
| 175 | + <groupId>org.apache.maven.plugins</groupId> |
| 176 | + <artifactId>maven-gpg-plugin</artifactId> |
| 177 | + <version>1.5</version> |
| 178 | + <executions> |
| 179 | + <execution> |
| 180 | + <id>sign-artifacts</id> |
| 181 | + <phase>verify</phase> |
| 182 | + <goals> |
| 183 | + <goal>sign</goal> |
| 184 | + </goals> |
| 185 | + </execution> |
| 186 | + </executions> |
| 187 | + </plugin> |
| 188 | + <plugin> |
| 189 | + <groupId>org.apache.maven.plugins</groupId> |
| 190 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 191 | + <version>2.9.1</version> |
| 192 | + <configuration> |
| 193 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 194 | + </configuration> |
| 195 | + <executions> |
| 196 | + <execution> |
| 197 | + <id>attach-javadocs</id> |
| 198 | + <goals> |
| 199 | + <goal>jar</goal> |
| 200 | + </goals> |
| 201 | + </execution> |
| 202 | + </executions> |
| 203 | + </plugin> |
| 204 | + </plugins> |
| 205 | + </pluginManagement> |
| 206 | + </build> |
| 207 | + <distributionManagement> |
| 208 | + <snapshotRepository> |
| 209 | + <id>oss.sonatype.org</id> |
| 210 | + <name>Nexus snapshots repository</name> |
| 211 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 212 | + </snapshotRepository> |
| 213 | + <repository> |
| 214 | + <id>oss.sonatype.org</id> |
| 215 | + <name>Nexus repository</name> |
| 216 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 217 | + </repository> |
| 218 | + </distributionManagement> |
| 219 | + </profile> |
| 220 | + </profiles> |
118 | 221 | </project>
|
0 commit comments