Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

Commit 96f17eb

Browse files
rdrussrohanKanojia
authored andcommitted
update vmp groupid and vert.x version (#1517)
* update vmp groupid and vert.x version * Update _enricher.adoc * update with fix 1517
1 parent cfb79a1 commit 96f17eb

File tree

15 files changed

+29
-27
lines changed

15 files changed

+29
-27
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ notes.md
1010
.vscode
1111
velocity.log
1212
/.metadata/
13-
/.recommenders/
13+
/.recommenders/
14+
.factorypath

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ After this we will switch probably to real [Semantic Versioning 2.0.0](http://se
2929
* Feature 718: Detect port number from configuration file for health check in Thorntail
3030
* Refactor 828: Moved Metedata specific code into DefaultMetadataEnricher
3131
* Feature 718: Detect port number from configuration file for health check in Thorntail
32-
* Feature 1498: Allow users to define secrets from annotations
32+
* Feature 1498: Allow users to define secrets from annotations
33+
* Fix 1517: update vmp groupid and vert.x version
3334

3435
### 4.0.0-M2 (2018-12-14)
3536
* Fix 10: Make VolumeConfiguration more flexible

doc/src/main/asciidoc/inc/_enricher.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ Lets say you have a maven pom.xml with the following issue management informatio
939939
----
940940
<issueManagement>
941941
<system>GitHub</system>
942-
<url>https://github.com/fabric8io/vertx-maven-plugin/issues/</url>
942+
<url>https://github.com/reactiverse/vertx-maven-plugin/issues/</url>
943943
</issueManagement>
944944
----
945945

@@ -952,7 +952,7 @@ This information will be enriched as annotations in the generated manifest like,
952952
metadata:
953953
annotations:
954954
fabric8.io/issue-system: "GitHub"
955-
fabric8.io/issue-tracker-url: "https://github.com/fabric8io/vertx-maven-plugin/issues/"
955+
fabric8.io/issue-tracker-url: "https://github.com/reactiverse/vertx-maven-plugin/issues/"
956956
...
957957
----
958958

doc/src/main/asciidoc/inc/generator/_vertx.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Vert.x generator detects an application using Eclipse Vert.x. It generates t
55

66
Currently, this generator is enabled if:
77

8-
* you are using the Vert.x Maven Plugin (https://github.com/fabric8io/vertx-maven-plugin)
8+
* you are using the Vert.x Maven Plugin (https://github.com/reactiverse/vertx-maven-plugin)
99
* you are depending on `io.vertx:vertx-core` and uses the Maven Shader plugin
1010

1111
Otherwise this generator is identical to the <<generator-java-exec,java-exec generator>>. It supports the <<generator-options-common, common generator options>> and the <<generator-java-exec-options, `java-exec` options>>.

enricher/fabric8/src/main/java/io/fabric8/maven/enricher/fabric8/VertxHealthCheckEnricher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*/
5050
public class VertxHealthCheckEnricher extends AbstractHealthCheckEnricher {
5151

52-
static final String VERTX_MAVEN_PLUGIN_GROUP = "io.fabric8";
52+
static final String VERTX_MAVEN_PLUGIN_GROUP = "io.reactiverse";
5353
static final String VERTX_MAVEN_PLUGIN_ARTIFACT = "vertx-maven-plugin";
5454
static final String VERTX_GROUPID = "io.vertx";
5555

enricher/standard/src/test/java/io/fabric8/maven/enricher/standard/MavenIssueManagementEnricherTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void testMavenIssueManagementAll() {
4545
final MavenProject project = new MavenProject();
4646
final IssueManagement issueManagement = new IssueManagement();
4747
issueManagement.setSystem("GitHub");
48-
issueManagement.setUrl("https://github.com/fabric8io/vertx-maven-plugin/issues/");
48+
issueManagement.setUrl("https://github.com/reactiverse/vertx-maven-plugin/issues/");
4949
project.setIssueManagement(issueManagement);
5050
// Setup mock behaviour
5151
new Expectations() {
@@ -63,7 +63,7 @@ public void testMavenIssueManagementAll() {
6363
Assert.assertEquals(2, scmAnnotations.size());
6464
assertEquals("GitHub",
6565
scmAnnotations.get(Fabric8Annotations.ISSUE_SYSTEM.value()));
66-
assertEquals("https://github.com/fabric8io/vertx-maven-plugin/issues/",
66+
assertEquals("https://github.com/reactiverse/vertx-maven-plugin/issues/",
6767
scmAnnotations.get(Fabric8Annotations.ISSUE_TRACKER_URL.value()));
6868
}
6969

generator/vertx/src/main/java/io/fabric8/maven/generator/vertx/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
public class Constants {
1919

20-
static final String VERTX_MAVEN_PLUGIN_GROUP = "io.fabric8";
20+
static final String VERTX_MAVEN_PLUGIN_GROUP = "io.reactiverse";
2121
static final String VERTX_MAVEN_PLUGIN_ARTIFACT = "vertx-maven-plugin";
2222
static final String SHADE_PLUGIN_GROUP = "org.apache.maven.plugins";
2323
static final String SHADE_PLUGIN_ARTIFACT = "maven-shade-plugin";

it/src/it/custom-environment/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<maven.compiler.source>1.8</maven.compiler.source>
3535
<maven.compiler.target>1.8</maven.compiler.target>
36-
<vertx.version>3.3.3</vertx.version>
36+
<vertx.version>3.6.3</vertx.version>
3737

3838
<vertx.verticle>io.vertx.example.SimpleWebVerticle</vertx.verticle>
39-
<vertx-maven-plugin.version>1.0.5</vertx-maven-plugin.version>
39+
<vertx-maven-plugin.version>1.0.18</vertx-maven-plugin.version>
4040
</properties>
4141

4242
<dependencyManagement>
@@ -103,7 +103,7 @@
103103

104104
<!-- vert.x maven plugin to generate the fat-jar -->
105105
<plugin>
106-
<groupId>io.fabric8</groupId>
106+
<groupId>io.reactiverse</groupId>
107107
<artifactId>vertx-maven-plugin</artifactId>
108108
<version>${vertx-maven-plugin.version}</version>
109109
<executions>

it/src/it/remote-resources/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<maven.compiler.source>1.8</maven.compiler.source>
3535
<maven.compiler.target>1.8</maven.compiler.target>
36-
<vertx.version>3.3.3</vertx.version>
36+
<vertx.version>3.6.3</vertx.version>
3737

3838
<vertx.verticle>io.vertx.example.SimpleWebVerticle</vertx.verticle>
39-
<vertx-maven-plugin.version>1.0.5</vertx-maven-plugin.version>
39+
<vertx-maven-plugin.version>1.0.18</vertx-maven-plugin.version>
4040
</properties>
4141

4242
<dependencyManagement>
@@ -105,7 +105,7 @@
105105

106106
<!-- vert.x maven plugin to generate the fat-jar -->
107107
<plugin>
108-
<groupId>io.fabric8</groupId>
108+
<groupId>io.reactiverse</groupId>
109109
<artifactId>vertx-maven-plugin</artifactId>
110110
<version>${vertx-maven-plugin.version}</version>
111111
<executions>

it/src/it/simple-maven-issue-mgmt/expected/kubernetes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ items:
2727
fabric8.io/git-branch: "@ignore@"
2828
prometheus.io/port: "9779"
2929
fabric8.io/issue-system: "GitHub"
30-
fabric8.io/issue-tracker-url: "https://github.com/fabric8io/vertx-maven-plugin/issues/"
30+
fabric8.io/issue-tracker-url: "https://github.com/reactiverse/vertx-maven-plugin/issues/"
3131
labels:
3232
expose: "true"
3333
provider: fabric8

0 commit comments

Comments
 (0)