|
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"> |
| 1 | + |
| 2 | +<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"> |
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 |
|
5 | 5 | <groupId>com.qiniu</groupId>
|
6 | 6 | <artifactId>sdk</artifactId>
|
7 |
| - <version>6.0.3</version> |
| 7 | + <version>6.1.5</version> |
8 | 8 | <packaging>jar</packaging>
|
9 | 9 | <name>java-sdk</name>
|
10 |
| - <url>http://www.qiniutek.com/</url> |
11 |
| - |
12 |
| - <build> |
13 |
| - <plugins> |
14 |
| - <plugin> |
15 |
| - <groupId>org.apache.maven.plugins</groupId> |
16 |
| - <artifactId>maven-compiler-plugin</artifactId> |
17 |
| - <configuration> |
18 |
| - <source>1.6</source> |
19 |
| - <target>1.6</target> |
20 |
| - <encoding>utf-8</encoding> |
21 |
| - </configuration> |
22 |
| - </plugin> |
| 10 | + <url>http://www.qiniu.com/</url> |
| 11 | + <description> Qiniu Resource (Cloud) Storage SDK demo for Java</description> |
| 12 | + <licenses> |
| 13 | + <license> |
| 14 | + <name>The MIT License</name> |
| 15 | + <url>http://opensource.org/licenses/MIT</url> |
| 16 | + </license> |
| 17 | + </licenses> |
23 | 18 |
|
| 19 | + <parent> |
| 20 | + <groupId>org.sonatype.oss</groupId> |
| 21 | + <artifactId>oss-parent</artifactId> |
| 22 | + <version>7</version> |
| 23 | + </parent> |
24 | 24 |
|
25 |
| - </plugins> |
| 25 | + <scm> |
| 26 | + < connection>scm:git: [email protected]:qiniu-sdk/java-sdk.git</ connection> |
| 27 | + < developerConnection>scm:git: [email protected]:qiniu-sdk/java-sdk.git</ developerConnection> |
| 28 | + < url> [email protected]:qiniu-sdk/java-sdk.git</ url> |
| 29 | + </scm> |
| 30 | + |
| 31 | + <build> |
| 32 | + <plugins> |
| 33 | + <plugin> |
| 34 | + <groupId>org.apache.maven.plugins</groupId> |
| 35 | + <artifactId>maven-compiler-plugin</artifactId> |
| 36 | + <version>3.1</version> |
| 37 | + <configuration> |
| 38 | + <source>1.6</source> |
| 39 | + <target>1.6</target> |
| 40 | + <encoding>utf-8</encoding> |
| 41 | + </configuration> |
| 42 | + </plugin> |
| 43 | + <plugin> |
| 44 | + <groupId>org.apache.maven.plugins</groupId> |
| 45 | + <artifactId>maven-gpg-plugin</artifactId> |
| 46 | + <version>1.5</version> |
| 47 | + <executions> |
| 48 | + <execution> |
| 49 | + <id>sign-artifacts</id> |
| 50 | + <phase>verify</phase> |
| 51 | + <goals> |
| 52 | + <goal>sign</goal> |
| 53 | + </goals> |
| 54 | + </execution> |
| 55 | + </executions> |
| 56 | + </plugin> |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.maven.plugins</groupId> |
| 59 | + <artifactId>maven-surefire-plugin</artifactId> |
| 60 | + <version>2.17</version> |
| 61 | + <configuration> |
| 62 | + <skipTests>true</skipTests> |
| 63 | + </configuration> |
| 64 | + </plugin> |
| 65 | + <plugin> |
| 66 | + <groupId>org.apache.maven.plugins</groupId> |
| 67 | + <artifactId>maven-release-plugin</artifactId> |
| 68 | + <configuration> |
| 69 | + <checkModificationExcludes> |
| 70 | + <checkModificationExclude>pom.xml</checkModificationExclude> |
| 71 | + </checkModificationExcludes> |
| 72 | + </configuration> |
| 73 | + </plugin> |
| 74 | + </plugins> |
26 | 75 |
|
27 |
| -</build> |
| 76 | + </build> |
| 77 | + <distributionManagement> |
| 78 | + <snapshotRepository> |
| 79 | + <id>qiniu-snapshots</id> |
| 80 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 81 | + </snapshotRepository> |
| 82 | + <repository> |
| 83 | + <id>qiniu-repository</id> |
| 84 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 85 | + </repository> |
| 86 | + </distributionManagement> |
28 | 87 |
|
29 | 88 | <properties>
|
30 | 89 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
0 commit comments