Skip to content

Commit fedd69d

Browse files
committed
[maven-release-plugin] prepare for next development iteration
1 parent 0d8c4d9 commit fedd69d

File tree

1 file changed

+32
-7
lines changed

1 file changed

+32
-7
lines changed

pom.xml

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42

53
<modelVersion>4.0.0</modelVersion>
64

@@ -35,7 +33,7 @@
3533
<execution>
3634
<id>attach-sources</id>
3735
<goals>
38-
<goal>jar-no-fork</goal>
36+
<goal>jar</goal>
3937
</goals>
4038
</execution>
4139
</executions>
@@ -82,15 +80,35 @@
8280
<autoReleaseAfterClose>true</autoReleaseAfterClose>
8381
</configuration>
8482
</plugin>
83+
<plugin>
84+
<artifactId>maven-deploy-plugin</artifactId>
85+
<version>2.8.2</version>
86+
<executions>
87+
<execution>
88+
<id>default-deploy</id>
89+
<phase>deploy</phase>
90+
<goals>
91+
<goal>deploy</goal>
92+
</goals>
93+
</execution>
94+
</executions>
95+
</plugin>
96+
8597
<plugin>
8698
<groupId>org.apache.maven.plugins</groupId>
8799
<artifactId>maven-release-plugin</artifactId>
88100
<version>2.5.3</version>
101+
<configuration>
102+
<localCheckout>true</localCheckout>
103+
<pushChanges>false</pushChanges>
104+
<mavenExecutorId>forked-path</mavenExecutorId>
105+
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
106+
</configuration>
89107
<dependencies>
90108
<dependency>
91-
<groupId>org.apache.maven.shared</groupId>
92-
<artifactId>maven-invoker</artifactId>
93-
<version>2.2</version>
109+
<groupId>org.apache.maven.scm</groupId>
110+
<artifactId>maven-scm-provider-gitexe</artifactId>
111+
<version>1.9.5</version>
94112
</dependency>
95113
</dependencies>
96114
</plugin>
@@ -137,6 +155,13 @@
137155
<url>https://github.com/taliox/zulip-java-rest/issues</url>
138156
</issueManagement>
139157

158+
<scm>
159+
<url>https://github.com/taliox/zulip-java-rest</url>
160+
<connection>scm:git:git://github.com/taliox/zulip-java-rest.git</connection>
161+
<developerConnection>scm:git:git@github.com:taliox/taliox.git</developerConnection>
162+
<tag>zulip-java-rest-0.0.1</tag>
163+
</scm>
164+
140165
<licenses>
141166
<license>
142167
<name>MIT License</name>

0 commit comments

Comments
 (0)