Skip to content

Commit de8ca1e

Browse files
committed
fix pom for simple release-procedure
1 parent 526597f commit de8ca1e

File tree

1 file changed

+10
-77
lines changed

1 file changed

+10
-77
lines changed

pom.xml

Lines changed: 10 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
<?xml version='1.0' encoding='UTF-8'?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
4+
<parent>
5+
<groupId>org.zalando.stups.build</groupId>
6+
<artifactId>stups-parent</artifactId>
7+
<version>7</version>
8+
<relativePath />
9+
</parent>
510
<groupId>de.zalando</groupId>
611
<artifactId>zalando-sprocwrapper</artifactId>
7-
<version>1.5.0-SNAPSHOT</version>
12+
<version>1.5.1-SNAPSHOT</version>
813
<packaging>jar</packaging>
914
<name>Stored Procedure Wrapper</name>
1015
<description>Library to make PostgreSQL stored procedures available through simple Java "*SProcService" interfaces including automatic object serialization and deserialization (using typemapper and convention-over-configuration). Supports sharding, advisory locking, statement timeouts and PostgreSQL types such as enums and hstore.</description>
@@ -19,7 +24,8 @@
1924
<connection>scm:git:git://github.com/zalando/java-sproc-wrapper.git</connection>
2025
<developerConnection>scm:git:[email protected]:zalando/java-sproc-wrapper.git</developerConnection>
2126
<url>https://github.com/zalando/java-sproc-wrapper.git</url>
22-
</scm>
27+
<tag>HEAD</tag>
28+
</scm>
2329

2430
<issueManagement>
2531
<system>GitHub</system>
@@ -76,48 +82,6 @@
7682
<artifactId>maven-resources-plugin</artifactId>
7783
<version>2.6</version>
7884
</plugin>
79-
<plugin>
80-
<groupId>org.apache.maven.plugins</groupId>
81-
<artifactId>maven-source-plugin</artifactId>
82-
<version>2.3</version>
83-
<executions>
84-
<execution>
85-
<id>attach-sources</id>
86-
<phase>verify</phase>
87-
<goals>
88-
<goal>jar-no-fork</goal>
89-
</goals>
90-
</execution>
91-
</executions>
92-
</plugin>
93-
<plugin>
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>
120-
</plugin>
12185
<plugin>
12286
<groupId>org.eluder.coveralls</groupId>
12387
<artifactId>coveralls-maven-plugin</artifactId>
@@ -126,7 +90,7 @@
12690
<plugin>
12791
<groupId>org.jacoco</groupId>
12892
<artifactId>jacoco-maven-plugin</artifactId>
129-
<version>0.7.2.201409121644</version>
93+
<version>0.7.7.201606060606</version>
13094
<executions>
13195
<execution>
13296
<id>prepare-agent</id>
@@ -408,36 +372,5 @@
408372
</plugins>
409373
</build>
410374
</profile>
411-
<profile>
412-
<id>ossrh</id>
413-
<build>
414-
<plugins>
415-
<plugin>
416-
<groupId>org.apache.maven.plugins</groupId>
417-
<artifactId>maven-gpg-plugin</artifactId>
418-
<version>1.5</version>
419-
<executions>
420-
<execution>
421-
<id>sign-artifacts</id>
422-
<phase>verify</phase>
423-
<goals>
424-
<goal>sign</goal>
425-
</goals>
426-
</execution>
427-
</executions>
428-
</plugin>
429-
</plugins>
430-
</build>
431-
</profile>
432375
</profiles>
433-
<distributionManagement>
434-
<snapshotRepository>
435-
<id>ossrh</id>
436-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
437-
</snapshotRepository>
438-
<repository>
439-
<id>ossrh</id>
440-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
441-
</repository>
442-
</distributionManagement>
443376
</project>

0 commit comments

Comments
 (0)