Skip to content

Commit 836cdb1

Browse files
committed
Declare the parent in the examples and quickstarts
1 parent 41afcfa commit 836cdb1

File tree

8 files changed

+56
-19
lines changed

8 files changed

+56
-19
lines changed

examples/amqp-quickstart/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.smallrye.reactive</groupId>
6-
<artifactId>amqp-quickstart</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
5+
<parent>
6+
<groupId>io.smallrye.reactive</groupId>
7+
<artifactId>smallrye-reactive-messaging</artifactId>
8+
<version>2.0.0-SNAPSHOT</version>
9+
<relativePath>../..</relativePath>
10+
</parent>
811

12+
<artifactId>amqp-quickstart</artifactId>
913

1014
<properties>
1115
<maven.compiler.source>1.8</maven.compiler.source>

examples/awssns-quickstart/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>io.smallrye.reactive</groupId>
6+
<parent>
7+
<groupId>io.smallrye.reactive</groupId>
8+
<artifactId>smallrye-reactive-messaging</artifactId>
9+
<version>2.0.0-SNAPSHOT</version>
10+
<relativePath>../..</relativePath>
11+
</parent>
12+
713
<artifactId>aws-sns-quickstart</artifactId>
8-
<version>2.0.0-SNAPSHOT</version>
914

1015
<properties>
1116
<maven.compiler.source>1.8</maven.compiler.source>

examples/cloud-events/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.smallrye.reactive</groupId>
5+
<parent>
6+
<groupId>io.smallrye.reactive</groupId>
7+
<artifactId>smallrye-reactive-messaging</artifactId>
8+
<version>2.0.0-SNAPSHOT</version>
9+
<relativePath>../..</relativePath>
10+
</parent>
11+
612
<artifactId>cloud-events-demo</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
813

914
<properties>
1015
<maven.compiler.source>1.8</maven.compiler.source>

examples/kafka-quickstart-kotlin/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.smallrye.reactive</groupId>
5+
<parent>
6+
<groupId>io.smallrye.reactive</groupId>
7+
<artifactId>smallrye-reactive-messaging</artifactId>
8+
<version>2.0.0-SNAPSHOT</version>
9+
<relativePath>../..</relativePath>
10+
</parent>
11+
612
<artifactId>kafka-quickstart-kotlin</artifactId>
713
<version>2.0.0-SNAPSHOT</version>
814

9-
1015
<properties>
1116
<maven.compiler.source>1.8</maven.compiler.source>
1217
<maven.compiler.target>1.8</maven.compiler.target>

examples/kafka-quickstart/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.smallrye.reactive</groupId>
5+
<parent>
6+
<groupId>io.smallrye.reactive</groupId>
7+
<artifactId>smallrye-reactive-messaging</artifactId>
8+
<version>2.0.0-SNAPSHOT</version>
9+
<relativePath>../..</relativePath>
10+
</parent>
11+
612
<artifactId>kafka-quickstart</artifactId>
713
<version>2.0.0-SNAPSHOT</version>
814

9-
1015
<properties>
1116
<maven.compiler.source>1.8</maven.compiler.source>
1217
<maven.compiler.target>1.8</maven.compiler.target>

examples/mqtt-quickstart/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.smallrye.reactive</groupId>
6-
<artifactId>mqtt-quickstart</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
5+
<parent>
6+
<groupId>io.smallrye.reactive</groupId>
7+
<artifactId>smallrye-reactive-messaging</artifactId>
8+
<version>2.0.0-SNAPSHOT</version>
9+
<relativePath>../..</relativePath>
10+
</parent>
811

12+
<artifactId>mqtt-quickstart</artifactId>
913

1014
<properties>
1115
<maven.compiler.source>1.8</maven.compiler.source>

examples/mqtt-server-quickstart/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.smallrye.reactive</groupId>
5+
<parent>
6+
<groupId>io.smallrye.reactive</groupId>
7+
<artifactId>smallrye-reactive-messaging</artifactId>
8+
<version>2.0.0-SNAPSHOT</version>
9+
<relativePath>../..</relativePath>
10+
</parent>
11+
612
<artifactId>mqtt-server-quickstart</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
813

914
<name>SmallRye Reactive Messaging MQTT server quickstart</name>
1015

examples/quickstart/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
<modelVersion>4.0.0</modelVersion>
44

55

6-
<groupId>io.smallrye.reactive</groupId>
7-
<artifactId>reactive-messaging-quickstart</artifactId>
8-
<version>2.0.0-SNAPSHOT</version>
6+
<parent>
7+
<groupId>io.smallrye.reactive</groupId>
8+
<artifactId>smallrye-reactive-messaging</artifactId>
9+
<version>2.0.0-SNAPSHOT</version>
10+
<relativePath>../..</relativePath>
11+
</parent>
912

13+
<artifactId>reactive-messaging-quickstart</artifactId>
1014

1115
<properties>
1216
<maven.compiler.source>1.8</maven.compiler.source>

0 commit comments

Comments
 (0)