|
6 | 6 |
|
7 | 7 | <groupId>com.riscure</groupId> |
8 | 8 | <artifactId>trsfile</artifactId> |
9 | | - <version>2.2</version> |
| 9 | + <version>2.2.1</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>${project.groupId}:${project.artifactId}</name> |
|
43 | 43 |
|
44 | 44 | <build> |
45 | 45 | <plugins> |
| 46 | + <plugin> |
| 47 | + <groupId>org.apache.maven.plugins</groupId> |
| 48 | + <artifactId>maven-jar-plugin</artifactId> |
| 49 | + <configuration> |
| 50 | + <archive> |
| 51 | + <addMavenDescriptor>false</addMavenDescriptor> |
| 52 | + </archive> |
| 53 | + </configuration> |
| 54 | + </plugin> |
46 | 55 | <plugin> |
47 | 56 | <groupId>org.apache.maven.plugins</groupId> |
48 | 57 | <artifactId>maven-javadoc-plugin</artifactId> |
|
65 | 74 | <goal>sign</goal> |
66 | 75 | </goals> |
67 | 76 | <configuration> |
68 | | - <!-- keyId must be the the sign-only subkey fingerprint! (master key 718AF75F82773822E8A71DD4CF33AD49CF13F02D is kept offline)--> |
69 | | - <keyId>D9B4FE0BC89DAA12EEAE5B4F397EA166CDA246DB</keyId> |
70 | | - <keyPass>${env.GPG_PASSPHRASE}</keyPass> |
71 | | - <keyFile>${project.basedir}/secrets/718AF75F82773822E8A71DD4CF33AD49CF13F02D_private_subkeys.asc</keyFile> |
| 77 | + <keyId>5287B80DBAC9612B12C06D8919239F30014C7B35</keyId> |
| 78 | + <keyPass>${env.PGP_PASSPHRASE}</keyPass> |
| 79 | + <skipNoKey>false</skipNoKey> |
72 | 80 | </configuration> |
73 | 81 | </execution> |
74 | 82 | </executions> |
75 | 83 | </plugin> |
76 | 84 |
|
| 85 | + <plugin> |
| 86 | + <groupId>org.sonatype.plugins</groupId> |
| 87 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 88 | + <version>1.6.7</version> |
| 89 | + <extensions>true</extensions> |
| 90 | + <configuration> |
| 91 | + <serverId>ossrh</serverId> |
| 92 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 93 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 94 | + </configuration> |
| 95 | + </plugin> |
| 96 | + |
77 | 97 | <plugin> |
78 | 98 | <groupId>org.apache.maven.plugins</groupId> |
79 | 99 | <artifactId>maven-source-plugin</artifactId> |
80 | 100 | <executions> |
81 | 101 | <execution> |
82 | 102 | <id>attach-sources</id> |
83 | | - <phase>verify</phase> |
84 | 103 | <goals> |
85 | 104 | <goal>jar-no-fork</goal> |
86 | 105 | </goals> |
|
132 | 151 | <artifactId>maven-javadoc-plugin</artifactId> |
133 | 152 | <version>3.2.0</version> |
134 | 153 | </plugin> |
| 154 | + <plugin> |
| 155 | + <groupId>org.apache.maven.plugins</groupId> |
| 156 | + <artifactId>maven-jar-plugin</artifactId> |
| 157 | + <version>3.2.0</version> |
| 158 | + </plugin> |
135 | 159 | <plugin> |
136 | 160 | <groupId>org.apache.maven.plugins</groupId> |
137 | 161 | <artifactId>maven-source-plugin</artifactId> |
|
187 | 211 | <scope>test</scope> |
188 | 212 | </dependency> |
189 | 213 | </dependencies> |
| 214 | + |
| 215 | + <distributionManagement> |
| 216 | + <snapshotRepository> |
| 217 | + <id>ossrh</id> |
| 218 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 219 | + </snapshotRepository> |
| 220 | + </distributionManagement> |
190 | 221 | </project> |
0 commit comments