Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 9518b5a

Browse files
committed
Merge branch 'master' into SendKeyError
2 parents 1e5aa28 + bdda111 commit 9518b5a

File tree

2 files changed

+58
-3
lines changed

2 files changed

+58
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
**/.settings/
88
**/.metadata/
99
**/target/
10+
target

pom.xml

Lines changed: 57 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
<java.version>1.7</java.version>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5757
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
58-
5958
<project.root>.</project.root>
6059
<rules.pmd>${project.root}/development/pmd_rules.xml</rules.pmd>
6160
<rules.checkstyle>${project.root}/development/checkstyle_rules.xml</rules.checkstyle>
@@ -101,6 +100,8 @@
101100
<version.findbugs.maven.plugin>3.0.0</version.findbugs.maven.plugin>
102101
<version.cobertura.maven.plugin>2.6</version.cobertura.maven.plugin>
103102
<version.license.maven.plugin>1.8</version.license.maven.plugin>
103+
<version.maven.gpg.plugin>1.5</version.maven.gpg.plugin>
104+
<version.maven.nexus.staging.plugin>1.6.3</version.maven.nexus.staging.plugin>
104105

105106
</properties>
106107

@@ -274,7 +275,6 @@
274275
<groupId>org.apache.maven.plugins</groupId>
275276
<artifactId>maven-failsafe-plugin</artifactId>
276277
</plugin>
277-
278278
</plugins>
279279
<pluginManagement>
280280
<plugins>
@@ -524,6 +524,33 @@
524524
</executions>
525525
</plugin>
526526

527+
<!-- signing jars plugin -->
528+
<plugin>
529+
<groupId>org.apache.maven.plugins</groupId>
530+
<artifactId>maven-gpg-plugin</artifactId>
531+
<version>${version.maven.gpg.plugin}</version>
532+
<executions>
533+
<execution>
534+
<id>sign-artifacts</id>
535+
<phase>verify</phase>
536+
<goals>
537+
<goal>sign</goal>
538+
</goals>
539+
</execution>
540+
</executions>
541+
</plugin>
542+
<!-- maven central release plugin -->
543+
<plugin>
544+
<groupId>org.sonatype.plugins</groupId>
545+
<artifactId>nexus-staging-maven-plugin</artifactId>
546+
<version>${version.maven.nexus.staging.plugin}</version>
547+
<extensions>true</extensions>
548+
<configuration>
549+
<serverId>ossrh</serverId>
550+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
551+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
552+
</configuration>
553+
</plugin>
527554
<!-- other plugins -->
528555

529556
<plugin>
@@ -652,7 +679,24 @@
652679
</plugins>
653680
</build>
654681
</profile>
655-
682+
683+
<profile>
684+
<id>maven-central</id>
685+
<build>
686+
<plugins>
687+
<plugin>
688+
<groupId>org.apache.maven.plugins</groupId>
689+
<artifactId>maven-gpg-plugin</artifactId>
690+
</plugin>
691+
<plugin>
692+
<groupId>org.sonatype.plugins</groupId>
693+
<artifactId>nexus-staging-maven-plugin</artifactId>
694+
</plugin>
695+
</plugins>
696+
</build>
697+
</profile>
698+
699+
656700
<profile>
657701
<id>skip-tests</id>
658702
<properties>
@@ -685,6 +729,16 @@
685729
<role>developer</role>
686730
</roles>
687731
</developer>
732+
<developer>
733+
<id>benhamidene</id>
734+
<name>Anis Ben Hamidene</name>
735+
<email>anis.benhamidene@novatec-gmbh.de</email>
736+
<organization>NovaTec Consulting GmbH</organization>
737+
<organizationUrl>http://www.novatec-gmbh.de</organizationUrl>
738+
<roles>
739+
<role>developer</role>
740+
</roles>
741+
</developer>
688742
</developers>
689743

690744
</project>

0 commit comments

Comments
 (0)