|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 | <groupId>org.jboss.elasticsearch</groupId>
|
7 | 7 | <artifactId>elasticsearch-river-jira</artifactId>
|
8 |
| - <version>1.8.2</version> |
| 8 | + <version>1.8.3</version> |
9 | 9 | <packaging>jar</packaging>
|
10 | 10 | <description>JIRA River for Elasticsearch</description>
|
11 | 11 | <inceptionYear>2012</inceptionYear>
|
12 |
| - <url>http://github.com/jbossorg/elasticsearch-river-jira</url> |
| 12 | + <url>http://github.com/searchisko/elasticsearch-river-jira</url> |
13 | 13 |
|
14 | 14 | <developers>
|
15 | 15 | <developer>
|
|
26 | 26 | </license>
|
27 | 27 | </licenses>
|
28 | 28 | <scm>
|
29 |
| - <connection>scm:git:git@github.com:jbossorg/elasticsearch-river-jira.git</connection> |
30 |
| - <developerConnection>scm:git:git@github.com:jbossorg/elasticsearch-river-jira.git</developerConnection> |
31 |
| - <url>http://github.com/jbossorg/elasticsearch-river-jira</url> |
| 29 | + <connection>scm:git:https://github.com/searchisko/elasticsearch-river-remote.git</connection> |
| 30 | + <developerConnection>scm:git:https://github.com/searchisko/elasticsearch-river-remote.git</developerConnection> |
| 31 | + <url>http://github.com/searchisko/elasticsearch-river-jira</url> |
32 | 32 | </scm>
|
| 33 | + <ciManagement> |
| 34 | + <system>travis</system> |
| 35 | + <url>https://travis-ci.org/searchisko/elasticsearch-river-jira</url> |
| 36 | + </ciManagement> |
33 | 37 |
|
34 | 38 | <properties>
|
35 | 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
36 | 40 | <java.version>1.7</java.version>
|
37 | 41 | <elasticsearch.version>1.4.0</elasticsearch.version>
|
38 | 42 | <structured-content-tools.version>1.3.7</structured-content-tools.version>
|
| 43 | + <!-- The Base URL of Nexus instance where we want to stage and automatically deploy during release--> |
| 44 | + <jboss.nexus.base.url>https://repository.jboss.org/nexus/</jboss.nexus.base.url> |
| 45 | + <!-- The URL of Nexus reposutory where we want to stage and deploy during release--> |
39 | 46 | <jboss.releases.repo.url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</jboss.releases.repo.url>
|
40 | 47 | <jboss.snapshots.repo.url>https://repository.jboss.org/nexus/content/repositories/snapshots/</jboss.snapshots.repo.url>
|
41 | 48 | </properties>
|
|
180 | 187 | </execution>
|
181 | 188 | </executions>
|
182 | 189 | </plugin>
|
| 190 | + <!-- Direct deploy to the maven repository during release --> |
| 191 | + <plugin> |
| 192 | + <groupId>org.apache.maven.plugins</groupId> |
| 193 | + <artifactId>maven-deploy-plugin</artifactId> |
| 194 | + <configuration> |
| 195 | + <skip>true</skip> |
| 196 | + </configuration> |
| 197 | + </plugin> |
| 198 | + <plugin> |
| 199 | + <groupId>org.sonatype.plugins</groupId> |
| 200 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 201 | + <executions> |
| 202 | + <execution> |
| 203 | + <id>default-deploy</id> |
| 204 | + <phase>deploy</phase> |
| 205 | + <goals> |
| 206 | + <goal>deploy</goal> |
| 207 | + <goal>release</goal> |
| 208 | + </goals> |
| 209 | + </execution> |
| 210 | + </executions> |
| 211 | + <configuration> |
| 212 | + <nexusUrl>${jboss.nexus.base.url}</nexusUrl> |
| 213 | + <!-- The server "id" element from settings.xml to use authentication from --> |
| 214 | + <serverId>jboss-releases-repository</serverId> |
| 215 | + </configuration> |
| 216 | + </plugin> |
| 217 | + <!-- coverage reports to the cobertura --> |
183 | 218 | <plugin>
|
184 | 219 | <groupId>org.codehaus.mojo</groupId>
|
185 | 220 | <artifactId>cobertura-maven-plugin</artifactId>
|
|
0 commit comments