|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>io.github.moacirrf</groupId> |
5 | 5 | <artifactId>nb-java-decompiler</artifactId> |
6 | | - <version>1.0.2</version> |
| 6 | + <version>2.0-SNAPSHOT</version> |
7 | 7 | <packaging>nbm</packaging> |
8 | 8 | <name>NB Java Decompiler</name> |
9 | 9 | <url>https://github.com/moacirrf/nb-java-decompiler</url> |
|
20 | 20 | <connection>scm:git:https://github.com/moacirrf/nb-java-decompiler</connection> |
21 | 21 | <developerConnection>scm:git:https://github.com/moacirrf/nb-java-decompiler</developerConnection> |
22 | 22 | <url>https://github.com/moacirrf/nb-java-decompiler/tree/${project.scm.tag}</url> |
23 | | - <tag>v1.0.2</tag> |
| 23 | + <tag>v2.0</tag> |
24 | 24 | </scm> |
25 | 25 | <licenses> |
26 | 26 | <license> |
|
44 | 44 | <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
45 | 45 | </repository> |
46 | 46 | </distributionManagement> |
| 47 | + <profiles> |
| 48 | + <profile> |
| 49 | + <id>maven-publish</id> |
| 50 | + <build> |
| 51 | + <plugins> |
| 52 | + <plugin> |
| 53 | + <groupId>org.apache.maven.plugins</groupId> |
| 54 | + <artifactId>maven-gpg-plugin</artifactId> |
| 55 | + <version>1.6</version> |
| 56 | + <executions> |
| 57 | + <execution> |
| 58 | + <id>sign-artifacts</id> |
| 59 | + <phase>verify</phase> |
| 60 | + <goals> |
| 61 | + <goal>sign</goal> |
| 62 | + </goals> |
| 63 | + </execution> |
| 64 | + </executions> |
| 65 | + </plugin> |
| 66 | + </plugins> |
| 67 | + </build> |
| 68 | + </profile> |
| 69 | + </profiles> |
47 | 70 | <build> |
48 | 71 | <plugins> |
49 | 72 | <plugin> |
|
67 | 90 | <licenseName>GNU GENERAL PUBLIC LICENSE 3.0</licenseName> |
68 | 91 | <licenseFile>LICENSE</licenseFile> |
69 | 92 | <!-- Path of Netbeans instalation. |
70 | | - <netbeansInstallation>${netbeansInstalationPath}</netbeansInstallation> --> |
| 93 | + <netbeansInstallation>${netbeansInstalationPath}</netbeansInstallation> --> |
| 94 | + <keystore>${basedir}/keystore.jks</keystore> |
| 95 | + <keystorepassword>${keypass}</keystorepassword> |
| 96 | + <keystorealias>nb-java-decompiler-key</keystorealias> |
71 | 97 | </configuration> |
72 | 98 | </plugin> |
73 | 99 | <plugin> |
|
94 | 120 | <artifactId>maven-surefire-plugin</artifactId> |
95 | 121 | <version>2.22.0</version> |
96 | 122 | </plugin> |
97 | | - <plugin> |
98 | | - <groupId>org.apache.maven.plugins</groupId> |
99 | | - <artifactId>maven-gpg-plugin</artifactId> |
100 | | - <version>1.6</version> |
101 | | - <executions> |
102 | | - <execution> |
103 | | - <id>sign-artifacts</id> |
104 | | - <phase>verify</phase> |
105 | | - <goals> |
106 | | - <goal>sign</goal> |
107 | | - </goals> |
108 | | - </execution> |
109 | | - </executions> |
110 | | - </plugin> |
111 | 123 | </plugins> |
112 | 124 | </build> |
113 | 125 | <dependencies> |
|
193 | 205 | <artifactId>org-netbeans-api-java-classpath</artifactId> |
194 | 206 | <version>RELEASE130</version> |
195 | 207 | </dependency> |
| 208 | + |
| 209 | + <dependency> |
| 210 | + <groupId>org.netbeans.external</groupId> |
| 211 | + <artifactId>updater</artifactId> |
| 212 | + <version>RELEASE130</version> |
| 213 | + <type>jar</type> |
| 214 | + </dependency> |
| 215 | + |
196 | 216 | </dependencies> |
197 | 217 |
|
198 | 218 | <repositories> |
|
0 commit comments