|
1 | 1 | <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/maven-v4_0_0.xsd"> |
2 | | - <parent> |
3 | | - <groupId>org.sonatype.oss</groupId> |
4 | | - <artifactId>oss-parent</artifactId> |
5 | | - <version>7</version> |
6 | | - </parent> |
7 | | - <!-- mvn clean javadoc:jar source:jar deploy --> |
8 | | - <!-- mvn release:prepare -Dusername=[username] -Dpassword=[password] --> |
9 | 2 | <modelVersion>4.0.0</modelVersion> |
10 | 3 | <groupId>com.melloware</groupId> |
11 | 4 | <artifactId>jintellitype</artifactId> |
12 | 5 | <packaging>jar</packaging> |
13 | | - <version>1.3.10-SNAPSHOT</version> |
| 6 | + <version>1.4.0-SNAPSHOT</version> |
14 | 7 | <url>http://www.melloware.com</url> |
15 | 8 | <name>JIntellitype</name> |
16 | 9 | <description>JIntellitype - JNI Java bridge to Microsoft Intellitype commands.</description> |
|
24 | 17 | <project.build.sourceEncoding>${default.encoding}</project.build.sourceEncoding> |
25 | 18 | <project.reporting.outputEncoding>${default.encoding}</project.reporting.outputEncoding> |
26 | 19 | <maven.compiler.plugin.encoding>${default.encoding}</maven.compiler.plugin.encoding> |
27 | | - <maven.compiler.source>1.6</maven.compiler.source> |
28 | | - <maven.compiler.target>1.6</maven.compiler.target> |
| 20 | + <maven.compiler.source>1.7</maven.compiler.source> |
| 21 | + <maven.compiler.target>1.7</maven.compiler.target> |
29 | 22 | </properties> |
30 | 23 | <inceptionYear>1999</inceptionYear> |
31 | 24 | <scm> |
|
174 | 167 | </execution> |
175 | 168 | </executions> |
176 | 169 | </plugin> |
| 170 | + <plugin> |
| 171 | + <groupId>org.apache.maven.plugins</groupId> |
| 172 | + <artifactId>maven-deploy-plugin</artifactId> |
| 173 | + <version>3.0.0-M1</version> |
| 174 | + <configuration> |
| 175 | + <deployAtEnd>false</deployAtEnd> |
| 176 | + </configuration> |
| 177 | + </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.apache.maven.plugins</groupId> |
| 180 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 181 | + <version>3.3.0</version> |
| 182 | + <configuration> |
| 183 | + <source>${maven.compiler.source}</source> |
| 184 | + <detectJavaApiLink>false</detectJavaApiLink> |
| 185 | + <quiet>true</quiet> |
| 186 | + <doclint>none</doclint> |
| 187 | + <failOnError>false</failOnError> |
| 188 | + <failOnWarnings>false</failOnWarnings> |
| 189 | + </configuration> |
| 190 | + <executions> |
| 191 | + <execution> |
| 192 | + <id>attach-javadocs</id> |
| 193 | + <goals> |
| 194 | + <goal>jar</goal> |
| 195 | + </goals> |
| 196 | + </execution> |
| 197 | + </executions> |
| 198 | + </plugin> |
| 199 | + <plugin> |
| 200 | + <groupId>org.apache.maven.plugins</groupId> |
| 201 | + <artifactId>maven-resources-plugin</artifactId> |
| 202 | + <version>3.2.0</version> |
| 203 | + <configuration> |
| 204 | + <propertiesEncoding>${project.build.sourceEncoding}</propertiesEncoding> |
| 205 | + </configuration> |
| 206 | + </plugin> |
| 207 | + <plugin> |
| 208 | + <groupId>org.apache.maven.plugins</groupId> |
| 209 | + <artifactId>maven-source-plugin</artifactId> |
| 210 | + <version>3.2.1</version> |
| 211 | + <executions> |
| 212 | + <execution> |
| 213 | + <id>attach-sources</id> |
| 214 | + <phase>package</phase> |
| 215 | + <goals> |
| 216 | + <goal>jar-no-fork</goal> |
| 217 | + </goals> |
| 218 | + </execution> |
| 219 | + </executions> |
| 220 | + </plugin> |
177 | 221 | <plugin> |
178 | 222 | <artifactId>maven-jar-plugin</artifactId> |
179 | 223 | <version>3.1.1</version> |
|
206 | 250 | <plugin> |
207 | 251 | <artifactId>maven-surefire-plugin</artifactId> |
208 | 252 | <groupId>org.apache.maven.plugins</groupId> |
209 | | - <version>3.0.0-M3</version> |
| 253 | + <version>3.0.0-M5</version> |
210 | 254 | <configuration> |
211 | 255 | <skip>true</skip> |
212 | 256 | </configuration> |
213 | 257 | </plugin> |
214 | 258 | <plugin> |
215 | 259 | <artifactId>maven-failsafe-plugin</artifactId> |
216 | | - <version>3.0.0-M3</version> |
| 260 | + <version>3.0.0-M5</version> |
217 | 261 | <executions> |
218 | 262 | <execution> |
219 | 263 | <goals> |
|
244 | 288 | </execution> |
245 | 289 | </executions> |
246 | 290 | </plugin> |
| 291 | + <plugin> |
| 292 | + <groupId>org.apache.maven.plugins</groupId> |
| 293 | + <artifactId>maven-compiler-plugin</artifactId> |
| 294 | + <version>3.8.1</version> |
| 295 | + <configuration> |
| 296 | + <source>7</source> |
| 297 | + <target>7</target> |
| 298 | + </configuration> |
| 299 | + </plugin> |
247 | 300 | </plugins> |
248 | 301 | </build> |
249 | 302 | <dependencies> |
|
323 | 376 | </plugin> |
324 | 377 | </plugins> |
325 | 378 | </reporting> |
| 379 | + <distributionManagement> |
| 380 | + <snapshotRepository> |
| 381 | + <id>ossrh</id> |
| 382 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 383 | + </snapshotRepository> |
| 384 | + <repository> |
| 385 | + <id>ossrh</id> |
| 386 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 387 | + </repository> |
| 388 | + </distributionManagement> |
326 | 389 | <profiles> |
327 | 390 | <profile> |
328 | 391 | <id>release-sign-artifacts</id> |
|
334 | 397 | </activation> |
335 | 398 | <build> |
336 | 399 | <plugins> |
| 400 | + <plugin> |
| 401 | + <groupId>org.sonatype.plugins</groupId> |
| 402 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 403 | + <version>1.6.8</version> |
| 404 | + <extensions>true</extensions> |
| 405 | + <configuration> |
| 406 | + <serverId>ossrh</serverId> |
| 407 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 408 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 409 | + </configuration> |
| 410 | + </plugin> |
337 | 411 | <plugin> |
338 | 412 | <groupId>org.apache.maven.plugins</groupId> |
339 | 413 | <artifactId>maven-gpg-plugin</artifactId> |
340 | | - <version>1.4</version> |
| 414 | + <version>3.0.1</version> |
341 | 415 | <executions> |
342 | 416 | <execution> |
343 | 417 | <id>sign-artifacts</id> |
|
348 | 422 | </execution> |
349 | 423 | </executions> |
350 | 424 | </plugin> |
351 | | - <plugin> |
352 | | - <artifactId>maven-release-plugin</artifactId> |
353 | | - <version>2.2.1</version> |
354 | | - <configuration> |
355 | | - <releaseProfiles>release-sign-artifacts</releaseProfiles> |
356 | | - <goals>clean javadoc:jar source:jar deploy</goals> |
357 | | - </configuration> |
358 | | - </plugin> |
359 | 425 | </plugins> |
360 | 426 | </build> |
361 | 427 | </profile> |
|
0 commit comments