|
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"> |
4 | 2 |
|
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
|
35 | 33 | <execution> |
36 | 34 | <id>attach-sources</id> |
37 | 35 | <goals> |
38 | | - <goal>jar-no-fork</goal> |
| 36 | + <goal>jar</goal> |
39 | 37 | </goals> |
40 | 38 | </execution> |
41 | 39 | </executions> |
|
82 | 80 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
83 | 81 | </configuration> |
84 | 82 | </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 | + |
85 | 97 | <plugin> |
86 | 98 | <groupId>org.apache.maven.plugins</groupId> |
87 | 99 | <artifactId>maven-release-plugin</artifactId> |
88 | 100 | <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> |
89 | 107 | <dependencies> |
90 | 108 | <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> |
94 | 112 | </dependency> |
95 | 113 | </dependencies> |
96 | 114 | </plugin> |
|
137 | 155 | <url>https://github.com/taliox/zulip-java-rest/issues</url> |
138 | 156 | </issueManagement> |
139 | 157 |
|
| 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 | + |
140 | 165 | <licenses> |
141 | 166 | <license> |
142 | 167 | <name>MIT License</name> |
|
0 commit comments