|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 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 | | - <groupId>com.junichi11</groupId> |
| 4 | + <groupId>com.junichi11.netbeans.modules</groupId> |
5 | 5 | <artifactId>netbeans-github-issues</artifactId> |
6 | 6 | <version>0.5.1</version> |
7 | 7 | <packaging>nbm</packaging> |
| 8 | + <name>GitHub Issues Support</name> |
| 9 | + <url>https://github.com/junichi11/netbeans-github-issues-plugin</url> |
| 10 | + <developers> |
| 11 | + <developer> |
| 12 | + <id>junichi11</id> |
| 13 | + <name>Junichi Yamamoto</name> |
| 14 | + <url>https://github.com/junichi11</url> |
| 15 | + </developer> |
| 16 | + </developers> |
| 17 | + <scm> |
| 18 | + <connection>scm:git:https://github.com/junichi11/netbeans-github-issues-plugin.git</connection> |
| 19 | + <developerConnection>scm:git:https://github.com/junichi11/netbeans-github-issues-plugin.git</developerConnection> |
| 20 | + <url>https://github.com/junichi11/netbeans-github-issues-plugin</url> |
| 21 | + <tag>HEAD</tag> |
| 22 | + </scm> |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>Common Development and Distribution License (CDDL) v1.0 and GNU General Public License (GPL) v2</name> |
| 26 | + <url>http://netbeans.org/cddl-gplv2.html</url> |
| 27 | + </license> |
| 28 | + </licenses> |
8 | 29 | <build> |
9 | 30 | <plugins> |
10 | 31 | <plugin> |
11 | | - <groupId>org.codehaus.mojo</groupId> |
| 32 | + <groupId>org.sonatype.plugins</groupId> |
| 33 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 34 | + <version>1.6.7</version> |
| 35 | + <extensions>true</extensions> |
| 36 | + <configuration> |
| 37 | + <serverId>ossrh</serverId> |
| 38 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 39 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 40 | + </configuration> |
| 41 | + </plugin> |
| 42 | + <plugin> |
| 43 | + <groupId>org.apache.netbeans.utilities</groupId> |
12 | 44 | <artifactId>nbm-maven-plugin</artifactId> |
13 | | - <version>3.13</version> |
| 45 | + <version>4.4</version> |
14 | 46 | <extensions>true</extensions> |
15 | 47 | <configuration> |
16 | 48 | <codeNameBase>com.junichi11.netbeans.github.issues</codeNameBase> |
|
24 | 56 | <plugin> |
25 | 57 | <groupId>org.apache.maven.plugins</groupId> |
26 | 58 | <artifactId>maven-compiler-plugin</artifactId> |
27 | | - <version>2.5.1</version> |
| 59 | + <version>3.8.1</version> |
28 | 60 | <configuration> |
29 | 61 | <source>1.8</source> |
30 | 62 | <target>1.8</target> |
|
33 | 65 | <plugin> |
34 | 66 | <groupId>org.apache.maven.plugins</groupId> |
35 | 67 | <artifactId>maven-jar-plugin</artifactId> |
36 | | - <version>2.4</version> |
| 68 | + <version>3.2.0</version> |
37 | 69 | <configuration> |
38 | | - <useDefaultManifestFile>true</useDefaultManifestFile> |
| 70 | + <archive> |
| 71 | + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| 72 | + </archive> |
39 | 73 | </configuration> |
40 | 74 | </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-gpg-plugin</artifactId> |
| 78 | + <version>1.6</version> |
| 79 | + <executions> |
| 80 | + <execution> |
| 81 | + <id>sign-artifacts</id> |
| 82 | + <phase>verify</phase> |
| 83 | + <goals> |
| 84 | + <goal>sign</goal> |
| 85 | + </goals> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
41 | 89 | </plugins> |
42 | 90 | </build> |
43 | 91 | <repositories> |
|
49 | 97 | <enabled>false</enabled> |
50 | 98 | </snapshots> |
51 | 99 | </repository> |
| 100 | + </repositories> |
| 101 | + <distributionManagement> |
52 | 102 | <repository> |
53 | | - <id>unknown-jars-temp-repo</id> |
54 | | - <name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name> |
55 | | - <url>file:${project.basedir}/lib</url> |
| 103 | + <id>ossrh</id> |
| 104 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
56 | 105 | </repository> |
57 | | - </repositories> |
| 106 | + <snapshotRepository> |
| 107 | + <id>ossrh</id> |
| 108 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 109 | + </snapshotRepository> |
| 110 | + </distributionManagement> |
58 | 111 | <dependencies> |
59 | 112 | <dependency> |
60 | 113 | <groupId>org.netbeans.api</groupId> |
|
191 | 244 | <properties> |
192 | 245 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
193 | 246 | <netbeans.api.version>RELEASE110</netbeans.api.version> |
| 247 | + <!-- deploy: mvn -Dgpg.skip=false deploy --> |
| 248 | + <gpg.skip>true</gpg.skip> |
194 | 249 | </properties> |
195 | | - <name>GitHub Issues</name> |
196 | 250 | <description>This plugin provides support for GitHub Issue Tracker. |
197 | 251 |
|
198 | 252 | <h2>Features</h2> |
|
0 commit comments