Skip to content

Commit af7785e

Browse files
author
wubingheng
committed
update project license to Apache 2.0, and update pom for release to Nexus repository.
1 parent 9adcbc0 commit af7785e

File tree

3 files changed

+115
-20
lines changed

3 files changed

+115
-20
lines changed

LICENSE

+10-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
1-
MIT License
1+
Copyright (c) 2019 吴炳亨(wubingheng).
22

3-
Copyright (c) 2019 吴炳亨
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
46

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
7+
http://www.apache.org/licenses/LICENSE-2.0
118

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE)
1+
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
22

33
# qiniu-suits (qsuits)
44
七牛云接口使用套件(可以工具形式使用),主要针对七牛云存储资源的批量处理进行功能的封装,提供更为简洁的操作方式。

pom.xml

+104-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,37 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>com.qiniu</groupId>
8-
<artifactId>qiniu-suits-java</artifactId>
8+
<artifactId>qsuits</artifactId>
99
<version>2.20</version>
1010
<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+
<email>[email protected]</email>
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>
1139

1240
<properties>
1341
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -115,4 +143,79 @@
115143
</plugins>
116144
</pluginManagement>
117145
</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>
118221
</project>

0 commit comments

Comments
 (0)