-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated keymanagement to version 0.0.9
Increased version to 2.0.2
- Loading branch information
1 parent
8f9eac3
commit 9dad621
Showing
1 changed file
with
32 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -537,23 +537,23 @@ | |
</annotationProcessorPaths> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok-maven-plugin</artifactId> | ||
<version>${lombok-maven-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>delombok</goal> | ||
</goals> | ||
<configuration> | ||
<addOutputDirectory>false</addOutputDirectory> | ||
<sourceDirectory>src/main/java</sourceDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.projectlombok</groupId>--> | ||
<!-- <artifactId>lombok-maven-plugin</artifactId>--> | ||
<!-- <version>${lombok-maven-plugin.version}</version>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <phase>generate-sources</phase>--> | ||
<!-- <goals>--> | ||
<!-- <goal>delombok</goal>--> | ||
<!-- </goals>--> | ||
<!-- <configuration>--> | ||
<!-- <addOutputDirectory>false</addOutputDirectory>--> | ||
<!-- <sourceDirectory>src/main/java</sourceDirectory>--> | ||
<!-- </configuration>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- </plugin>--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
|
@@ -574,12 +574,14 @@ | |
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.8</version> | ||
<version>1.6.13</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>sonatype</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
<keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure> | ||
<stagingProgressTimeoutMinutes>30</stagingProgressTimeoutMinutes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
|
@@ -598,8 +600,13 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
<version>3.0.1</version> | ||
<configuration> | ||
<keyname>[email protected]</keyname> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
|
@@ -608,6 +615,12 @@ | |
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|