Skip to content

Commit ef371f8

Browse files
committed
add GPG plugin
1 parent 8d717ae commit ef371f8

File tree

1 file changed

+56
-36
lines changed

1 file changed

+56
-36
lines changed

pom.xml

Lines changed: 56 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,18 @@
3434
</licenses>
3535

3636
<developers>
37-
<developer>
38-
<name>Jan Mußler</name>
39-
<email>[email protected]</email>
40-
<organization>Zalando</organization>
41-
<organizationUrl>http://tech.zalando.com/</organizationUrl>
42-
</developer>
37+
<developer>
38+
<name>Jan Mußler</name>
39+
<email>[email protected]</email>
40+
<organization>Zalando SE</organization>
41+
<organizationUrl>http://tech.zalando.com/</organizationUrl>
42+
</developer>
43+
<developer>
44+
<name>Henning Jacobs</name>
45+
<email>[email protected]</email>
46+
<organization>Zalando SE</organization>
47+
<organizationUrl>http://tech.zalando.com/</organizationUrl>
48+
</developer>
4349
</developers>
4450

4551
<prerequisites>
@@ -75,28 +81,42 @@
7581
<artifactId>maven-source-plugin</artifactId>
7682
<version>2.3</version>
7783
<executions>
78-
<execution>
79-
<id>attach-sources</id>
80-
<phase>verify</phase>
81-
<goals>
82-
<goal>jar-no-fork</goal>
83-
</goals>
84-
</execution>
84+
<execution>
85+
<id>attach-sources</id>
86+
<phase>verify</phase>
87+
<goals>
88+
<goal>jar-no-fork</goal>
89+
</goals>
90+
</execution>
8591
</executions>
8692
</plugin>
8793
<plugin>
88-
<groupId>org.apache.maven.plugins</groupId>
89-
<artifactId>maven-javadoc-plugin</artifactId>
90-
<version>2.10.1</version>
91-
<executions>
92-
<execution>
93-
<id>attach-javadoc</id>
94-
<phase>verify</phase>
95-
<goals>
96-
<goal>jar</goal>
97-
</goals>
98-
</execution>
99-
</executions>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-javadoc-plugin</artifactId>
96+
<version>2.10.1</version>
97+
<executions>
98+
<execution>
99+
<id>attach-javadoc</id>
100+
<phase>verify</phase>
101+
<goals>
102+
<goal>jar</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-gpg-plugin</artifactId>
110+
<version>1.5</version>
111+
<executions>
112+
<execution>
113+
<id>sign-artifacts</id>
114+
<phase>verify</phase>
115+
<goals>
116+
<goal>sign</goal>
117+
</goals>
118+
</execution>
119+
</executions>
100120
</plugin>
101121
</plugins>
102122
</build>
@@ -274,7 +294,7 @@
274294
</configuration>
275295
</execution>
276296

277-
<!-- execution against database 1 -->
297+
<!-- execution against database 1 -->
278298
<execution>
279299
<id>drop-schemas-database1</id>
280300
<phase>process-test-resources</phase>
@@ -292,7 +312,7 @@
292312
<onError>continue</onError>
293313
</configuration>
294314
</execution>
295-
<execution>
315+
<execution>
296316
<id>create-data-database1</id>
297317
<phase>process-test-resources</phase>
298318
<goals>
@@ -330,7 +350,7 @@
330350
<onError>continue</onError>
331351
</configuration>
332352
</execution>
333-
<execution>
353+
<execution>
334354
<id>create-data-database2</id>
335355
<phase>process-test-resources</phase>
336356
<goals>
@@ -378,13 +398,13 @@
378398
</profile>
379399
</profiles>
380400
<distributionManagement>
381-
<snapshotRepository>
382-
<id>ossrh</id>
383-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
384-
</snapshotRepository>
385-
<repository>
386-
<id>ossrh</id>
387-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
388-
</repository>
401+
<snapshotRepository>
402+
<id>ossrh</id>
403+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
404+
</snapshotRepository>
405+
<repository>
406+
<id>ossrh</id>
407+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
408+
</repository>
389409
</distributionManagement>
390410
</project>

0 commit comments

Comments
 (0)