|
23 | 23 |
|
24 | 24 | <groupId>be.atbash.mp.rest-client</groupId>
|
25 | 25 | <artifactId>rest-client-parent</artifactId>
|
26 |
| - <version>0.5-SNAPSHOT</version> |
| 26 | + <version>0.5</version> |
27 | 27 | <packaging>pom</packaging>
|
28 | 28 |
|
29 | 29 | <properties>
|
|
39 | 39 | <description>Atbash Rest Client parent</description>
|
40 | 40 | <url>Atbash Rest Client parent</url>
|
41 | 41 |
|
| 42 | + <scm> |
| 43 | + <connection>scm:git:git://github.com/atbashEE/atbash-rest-client.git</connection> |
| 44 | + <developerConnection>scm:git:ssh://github.com:atbashEE/atbash-rest-client.git</developerConnection> |
| 45 | + <url>http://github.com/atbashEE/atbash-rest-client/tree/master</url> |
| 46 | + </scm> |
| 47 | + |
42 | 48 | <developers>
|
43 | 49 | <developer>
|
44 | 50 | <id>rubus</id>
|
|
145 | 151 |
|
146 | 152 | </build>
|
147 | 153 |
|
| 154 | + <profiles> |
| 155 | + <profile> |
| 156 | + <id>release</id> |
| 157 | + <distributionManagement> |
| 158 | + <snapshotRepository> |
| 159 | + <id>ossrh</id> |
| 160 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 161 | + </snapshotRepository> |
| 162 | + <repository> |
| 163 | + <id>ossrh</id> |
| 164 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 165 | + </repository> |
| 166 | + </distributionManagement> |
| 167 | + <build> |
| 168 | + <plugins> |
| 169 | + <plugin> |
| 170 | + <groupId>org.apache.maven.plugins</groupId> |
| 171 | + <artifactId>maven-source-plugin</artifactId> |
| 172 | + <version>2.4</version> |
| 173 | + <executions> |
| 174 | + <execution> |
| 175 | + <id>attach-sources</id> |
| 176 | + <goals> |
| 177 | + <goal>jar-no-fork</goal> |
| 178 | + </goals> |
| 179 | + </execution> |
| 180 | + </executions> |
| 181 | + </plugin> |
| 182 | + |
| 183 | + <!-- Configure the jar with the javadoc (or rather, convince Maven that |
| 184 | + we want javadoc at all) --> |
| 185 | + <plugin> |
| 186 | + <groupId>org.apache.maven.plugins</groupId> |
| 187 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 188 | + <version>2.10.3</version> |
| 189 | + <configuration> |
| 190 | + <javadocVersion>1.8</javadocVersion> |
| 191 | + <notimestamp>true</notimestamp> |
| 192 | + <!--splitindex>true</splitindex--> |
| 193 | + <doctitle>${project.name} ${project.version}</doctitle> |
| 194 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 195 | + <bottom> |
| 196 | + <![CDATA[]]> |
| 197 | + </bottom> |
| 198 | + </configuration> |
| 199 | + <executions> |
| 200 | + <execution> |
| 201 | + <id>attach-javadocs</id> |
| 202 | + <goals> |
| 203 | + <goal>jar</goal> |
| 204 | + </goals> |
| 205 | + </execution> |
| 206 | + </executions> |
| 207 | + </plugin> |
| 208 | + <plugin> |
| 209 | + <groupId>org.apache.maven.plugins</groupId> |
| 210 | + <artifactId>maven-gpg-plugin</artifactId> |
| 211 | + <version>1.6</version> |
| 212 | + <executions> |
| 213 | + <execution> |
| 214 | + <id>sign-artifacts</id> |
| 215 | + <phase>verify</phase> |
| 216 | + <goals> |
| 217 | + <goal>sign</goal> |
| 218 | + </goals> |
| 219 | + </execution> |
| 220 | + </executions> |
| 221 | + </plugin> |
| 222 | + |
| 223 | + </plugins> |
| 224 | + </build> |
| 225 | + |
| 226 | + </profile> |
| 227 | + </profiles> |
148 | 228 | </project>
|
0 commit comments