|
10 | 10 | </parent>
|
11 | 11 | <groupId>com.pig4cloud.plugin</groupId>
|
12 | 12 | <artifactId>oss-spring-boot-starter</artifactId>
|
13 |
| - <version>1.1.0-SNAPSHOT</version> |
| 13 | + <version>3.0.0-SNAPSHOT</version> |
14 | 14 | <name>oss-spring-boot-starter</name>
|
15 | 15 | <description>兼容S3 协议的通用文件存储工具类</description>
|
16 | 16 |
|
17 | 17 | <properties>
|
18 | 18 | <java.version>17</java.version>
|
19 | 19 | <aws.version>1.12.261</aws.version>
|
20 |
| - <mica.auto.version>2.2.2</mica.auto.version> |
| 20 | + <mica.auto.version>3.0.0</mica.auto.version> |
21 | 21 | <swagger.version>1.5.22</swagger.version>
|
22 | 22 | <swagger.v3.version>2.1.10</swagger.v3.version>
|
23 | 23 | <spring.checkstyle.plugin>0.0.29</spring.checkstyle.plugin>
|
|
97 | 97 | </plugin>
|
98 | 98 | </plugins>
|
99 | 99 | </build>
|
| 100 | + |
100 | 101 | <profiles>
|
101 | 102 | <profile>
|
102 |
| - <id>release</id> |
| 103 | + <id>snapshot</id> |
103 | 104 | <build>
|
104 | 105 | <plugins>
|
105 | 106 | <!-- Source -->
|
|
120 | 121 | <plugin>
|
121 | 122 | <groupId>org.apache.maven.plugins</groupId>
|
122 | 123 | <artifactId>maven-javadoc-plugin</artifactId>
|
123 |
| - <version>2.9.1</version> |
| 124 | + <version>3.3.2</version> |
124 | 125 | <configuration>
|
125 | 126 | <show>private</show>
|
126 | 127 | <nohelp>true</nohelp>
|
127 | 128 | <charset>UTF-8</charset>
|
128 | 129 | <encoding>UTF-8</encoding>
|
129 | 130 | <docencoding>UTF-8</docencoding>
|
130 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
| 131 | + <doclint>none</doclint> |
131 | 132 | <detectJavaApiLink>false</detectJavaApiLink>
|
132 | 133 | </configuration>
|
133 | 134 | <executions>
|
|
163 | 164 | <plugin>
|
164 | 165 | <groupId>org.sonatype.plugins</groupId>
|
165 | 166 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
166 |
| - <version>1.6.8</version> |
| 167 | + <version>1.6.13</version> |
167 | 168 | <extensions>true</extensions>
|
168 | 169 | <configuration>
|
169 | 170 | <serverId>sonatype</serverId>
|
|
180 | 181 | https://oss.sonatype.org/content/repositories/snapshots/
|
181 | 182 | </url>
|
182 | 183 | </snapshotRepository>
|
| 184 | + </distributionManagement> |
| 185 | + </profile> |
| 186 | + <profile> |
| 187 | + <id>release</id> |
| 188 | + <build> |
| 189 | + <plugins> |
| 190 | + <!-- Source --> |
| 191 | + <plugin> |
| 192 | + <groupId>org.apache.maven.plugins</groupId> |
| 193 | + <artifactId>maven-source-plugin</artifactId> |
| 194 | + <version>2.2.1</version> |
| 195 | + <executions> |
| 196 | + <execution> |
| 197 | + <phase>package</phase> |
| 198 | + <goals> |
| 199 | + <goal>jar-no-fork</goal> |
| 200 | + </goals> |
| 201 | + </execution> |
| 202 | + </executions> |
| 203 | + </plugin> |
| 204 | + <!-- Javadoc --> |
| 205 | + <plugin> |
| 206 | + <groupId>org.apache.maven.plugins</groupId> |
| 207 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 208 | + <version>3.3.2</version> |
| 209 | + <configuration> |
| 210 | + <show>private</show> |
| 211 | + <nohelp>true</nohelp> |
| 212 | + <charset>UTF-8</charset> |
| 213 | + <encoding>UTF-8</encoding> |
| 214 | + <docencoding>UTF-8</docencoding> |
| 215 | + <doclint>none</doclint> |
| 216 | + <detectJavaApiLink>false</detectJavaApiLink> |
| 217 | + </configuration> |
| 218 | + <executions> |
| 219 | + <execution> |
| 220 | + <phase>package</phase> |
| 221 | + <goals> |
| 222 | + <goal>jar</goal> |
| 223 | + </goals> |
| 224 | + </execution> |
| 225 | + </executions> |
| 226 | + </plugin> |
| 227 | + <!-- GPG --> |
| 228 | + <plugin> |
| 229 | + <groupId>org.apache.maven.plugins</groupId> |
| 230 | + <artifactId>maven-gpg-plugin</artifactId> |
| 231 | + <version>3.0.1</version> |
| 232 | + <executions> |
| 233 | + <execution> |
| 234 | + <id>sign-artifacts</id> |
| 235 | + <phase>verify</phase> |
| 236 | + <goals> |
| 237 | + <goal>sign</goal> |
| 238 | + </goals> |
| 239 | + </execution> |
| 240 | + </executions> |
| 241 | + <configuration> |
| 242 | + <gpgArguments> |
| 243 | + <arg>--pinentry-mode</arg> |
| 244 | + <arg>loopback</arg> |
| 245 | + </gpgArguments> |
| 246 | + </configuration> |
| 247 | + </plugin> |
| 248 | + <plugin> |
| 249 | + <groupId>org.sonatype.plugins</groupId> |
| 250 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 251 | + <version>1.6.13</version> |
| 252 | + <extensions>true</extensions> |
| 253 | + <configuration> |
| 254 | + <serverId>sonatype</serverId> |
| 255 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 256 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 257 | + </configuration> |
| 258 | + </plugin> |
| 259 | + </plugins> |
| 260 | + </build> |
| 261 | + <distributionManagement> |
183 | 262 | <repository>
|
184 | 263 | <id>sonatype</id>
|
185 | 264 | <url>
|
|
0 commit comments