|
5 | 5 | <groupId>org.acme</groupId>
|
6 | 6 | <artifactId>kafka-quickstart</artifactId>
|
7 | 7 | <version>1.0.0-SNAPSHOT</version>
|
8 |
| - <properties> |
9 |
| - <surefire-plugin.version>3.0.0-M5</surefire-plugin.version> |
10 |
| - <quarkus-plugin.version>999-SNAPSHOT</quarkus-plugin.version> |
11 |
| - <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
12 |
| - <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id> |
13 |
| - <quarkus.platform.version>999-SNAPSHOT</quarkus.platform.version> |
14 |
| - <maven.compiler.source>11</maven.compiler.source> |
15 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 |
| - <maven.compiler.target>11</maven.compiler.target> |
17 |
| - <testcontainers.version>1.15.2</testcontainers.version> |
18 |
| - </properties> |
19 |
| - <dependencyManagement> |
20 |
| - <dependencies> |
21 |
| - <dependency> |
22 |
| - <groupId>${quarkus.platform.group-id}</groupId> |
23 |
| - <artifactId>${quarkus.platform.artifact-id}</artifactId> |
24 |
| - <version>${quarkus.platform.version}</version> |
25 |
| - <type>pom</type> |
26 |
| - <scope>import</scope> |
27 |
| - </dependency> |
28 |
| - </dependencies> |
29 |
| - </dependencyManagement> |
30 |
| - <dependencies> |
31 |
| - <dependency> |
32 |
| - <groupId>io.quarkus</groupId> |
33 |
| - <artifactId>quarkus-resteasy-reactive</artifactId> |
34 |
| - </dependency> |
35 |
| - <dependency> |
36 |
| - <groupId>io.quarkus</groupId> |
37 |
| - <artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId> |
38 |
| - </dependency> |
39 |
| - <dependency> |
40 |
| - <groupId>io.quarkus</groupId> |
41 |
| - <artifactId>quarkus-resteasy-reactive-jackson</artifactId> |
42 |
| - </dependency> |
43 |
| - <dependency> |
44 |
| - <groupId>io.quarkus</groupId> |
45 |
| - <artifactId>quarkus-junit5</artifactId> |
46 |
| - <scope>test</scope> |
47 |
| - </dependency> |
48 |
| - <dependency> |
49 |
| - <groupId>io.quarkus</groupId> |
50 |
| - <artifactId>quarkus-smallrye-health</artifactId> |
51 |
| - </dependency> |
52 |
| - <dependency> |
53 |
| - <groupId>org.jboss.resteasy</groupId> |
54 |
| - <artifactId>resteasy-client</artifactId> |
55 |
| - <scope>test</scope> |
56 |
| - </dependency> |
57 |
| - <dependency> |
58 |
| - <groupId>io.rest-assured</groupId> |
59 |
| - <artifactId>rest-assured</artifactId> |
60 |
| - <scope>test</scope> |
61 |
| - </dependency> |
62 |
| - <dependency> |
63 |
| - <groupId>org.awaitility</groupId> |
64 |
| - <artifactId>awaitility</artifactId> |
65 |
| - <scope>test</scope> |
66 |
| - </dependency> |
67 |
| - </dependencies> |
68 |
| - <build> |
69 |
| - <plugins> |
70 |
| - <plugin> |
71 |
| - <groupId>io.quarkus</groupId> |
72 |
| - <artifactId>quarkus-maven-plugin</artifactId> |
73 |
| - <version>${quarkus-plugin.version}</version> |
74 |
| - <executions> |
75 |
| - <execution> |
76 |
| - <goals> |
77 |
| - <goal>build</goal> |
78 |
| - </goals> |
79 |
| - </execution> |
80 |
| - </executions> |
81 |
| - </plugin> |
82 |
| - <plugin> |
83 |
| - <artifactId>maven-surefire-plugin</artifactId> |
84 |
| - <version>${surefire-plugin.version}</version> |
85 |
| - <configuration> |
86 |
| - <systemPropertyVariables> |
87 |
| - <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
88 |
| - <maven.home>${maven.home}</maven.home> |
89 |
| - </systemPropertyVariables> |
90 |
| - </configuration> |
91 |
| - </plugin> |
92 |
| - </plugins> |
93 |
| - </build> |
94 |
| - <profiles> |
95 |
| - <profile> |
96 |
| - <id>native</id> |
97 |
| - <activation> |
98 |
| - <property> |
99 |
| - <name>native</name> |
100 |
| - </property> |
101 |
| - </activation> |
102 |
| - <properties> |
103 |
| - <quarkus.package.type>native</quarkus.package.type> |
104 |
| - </properties> |
105 |
| - <build> |
106 |
| - <plugins> |
107 |
| - <plugin> |
108 |
| - <artifactId>maven-failsafe-plugin</artifactId> |
109 |
| - <version>${surefire-plugin.version}</version> |
110 |
| - <executions> |
111 |
| - <execution> |
112 |
| - <goals> |
113 |
| - <goal>integration-test</goal> |
114 |
| - <goal>verify</goal> |
115 |
| - </goals> |
116 |
| - <configuration> |
117 |
| - <systemPropertyVariables> |
118 |
| - <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path> |
119 |
| - <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
120 |
| - <maven.home>${maven.home}</maven.home> |
121 |
| - </systemPropertyVariables> |
122 |
| - </configuration> |
123 |
| - </execution> |
124 |
| - </executions> |
125 |
| - </plugin> |
126 |
| - </plugins> |
127 |
| - </build> |
128 |
| - </profile> |
129 |
| - <profile> |
130 |
| - <id>docker</id> |
131 |
| - <activation> |
132 |
| - <property> |
133 |
| - <name>start-containers</name> |
134 |
| - </property> |
135 |
| - </activation> |
136 |
| - <build> |
137 |
| - <plugins> |
138 |
| - <plugin> |
139 |
| - <groupId>org.codehaus.mojo</groupId> |
140 |
| - <artifactId>exec-maven-plugin</artifactId> |
141 |
| - <version>3.0.0</version> |
142 |
| - <executions> |
143 |
| - <execution> |
144 |
| - <id>docker-prune</id> |
145 |
| - <phase>generate-resources</phase> |
146 |
| - <goals> |
147 |
| - <goal>exec</goal> |
148 |
| - </goals> |
149 |
| - <configuration> |
150 |
| - <executable>${basedir}/../.github/docker-prune.sh</executable> |
151 |
| - </configuration> |
152 |
| - </execution> |
153 |
| - </executions> |
154 |
| - </plugin> |
155 |
| - </plugins> |
156 |
| - </build> |
157 |
| - </profile> |
158 |
| - </profiles> |
| 8 | + <packaging>pom</packaging> |
| 9 | + <modules> |
| 10 | + <module>producer</module> |
| 11 | + <module>processor</module> |
| 12 | + </modules> |
159 | 13 | </project>
|
0 commit comments