|
45 | 45 | <dotenv.version>3.0.0</dotenv.version> |
46 | 46 | <junit.version>5.10.3</junit.version> |
47 | 47 | <slf4j.version>2.0.13</slf4j.version> |
48 | | - <helidon.version>3.2.10</helidon.version> |
| 48 | + <helidon.version>4.1.4</helidon.version> |
| 49 | + <helidon.test.version>3.2.11</helidon.test.version> |
49 | 50 | <jakarta.enterprise.version>3.0.1</jakarta.enterprise.version> |
50 | 51 | <microprofile.version>7.0</microprofile.version> |
| 52 | + <quarkus.version>3.17.2</quarkus.version> |
| 53 | + <jboss-logging.version>3.6.1.Final</jboss-logging.version> |
| 54 | + <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
| 55 | + <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
| 56 | + <maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version> |
| 57 | + <maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version> |
| 58 | + <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
| 59 | + <maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version> |
| 60 | + <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> |
| 61 | + <maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version> |
| 62 | + <maven-clean-plugin.version>3.4.0</maven-clean-plugin.version> |
| 63 | + <cyclonedx-maven-plugin.version>2.8.0</cyclonedx-maven-plugin.version> |
| 64 | + <jreleaser-maven-plugin.version>1.9.0</jreleaser-maven-plugin.version> |
| 65 | + <versions-maven-plugin.version>2.17.1</versions-maven-plugin.version> |
51 | 66 | </properties> |
52 | 67 |
|
53 | 68 | <dependencyManagement> |
|
66 | 81 | <scope>import</scope> |
67 | 82 | <type>pom</type> |
68 | 83 | </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>io.quarkus.platform</groupId> |
| 86 | + <artifactId>quarkus-bom</artifactId> |
| 87 | + <version>${quarkus.version}</version> |
| 88 | + <type>pom</type> |
| 89 | + <scope>import</scope> |
| 90 | + </dependency> |
69 | 91 | <dependency> |
70 | 92 | <groupId>${project.groupId}</groupId> |
71 | 93 | <artifactId>hiero-base</artifactId> |
|
107 | 129 | <artifactId>grpc-core</artifactId> |
108 | 130 | <version>${grpc.version}</version> |
109 | 131 | </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>io.grpc</groupId> |
| 134 | + <artifactId>grpc-api</artifactId> |
| 135 | + <version>${grpc.version}</version> |
| 136 | + </dependency> |
110 | 137 | <dependency> |
111 | 138 | <groupId>io.grpc</groupId> |
112 | 139 | <artifactId>grpc-context</artifactId> |
|
142 | 169 | <artifactId>slf4j-simple</artifactId> |
143 | 170 | <version>${slf4j.version}</version> |
144 | 171 | </dependency> |
145 | | - <dependency> |
146 | | - <groupId>jakarta.enterprise</groupId> |
147 | | - <artifactId>jakarta.enterprise.cdi-api</artifactId> |
148 | | - <version>${jakarta.enterprise.version}</version> |
149 | | - </dependency> |
150 | 172 | <dependency> |
151 | 173 | <groupId>io.helidon.microprofile.server</groupId> |
152 | 174 | <artifactId>helidon-microprofile-server</artifactId> |
|
155 | 177 | <dependency> |
156 | 178 | <groupId>io.helidon.microprofile.tests</groupId> |
157 | 179 | <artifactId>helidon-microprofile-tests-junit5</artifactId> |
158 | | - <version>${helidon.version}</version> |
| 180 | + <version>${helidon.test.version}</version> |
| 181 | + </dependency> |
| 182 | + <dependency> |
| 183 | + <groupId>org.jboss.logging</groupId> |
| 184 | + <artifactId>jboss-logging</artifactId> |
| 185 | + <version>${jboss-logging.version}</version> |
159 | 186 | </dependency> |
160 | 187 | </dependencies> |
161 | 188 | </dependencyManagement> |
|
165 | 192 | <module>hiero-spring</module> |
166 | 193 | <module>hiero-microprofile</module> |
167 | 194 | <module>hiero-spring-sample</module> |
| 195 | + <module>hiero-microprofile-sample</module> |
168 | 196 | </modules> |
169 | 197 |
|
170 | 198 | <build> |
|
173 | 201 | <plugin> |
174 | 202 | <groupId>org.apache.maven.plugins</groupId> |
175 | 203 | <artifactId>maven-resources-plugin</artifactId> |
176 | | - <version>3.3.1</version> |
| 204 | + <version>${maven-resources-plugin.version}</version> |
177 | 205 | </plugin> |
178 | 206 | <plugin> |
179 | 207 | <groupId>org.apache.maven.plugins</groupId> |
180 | 208 | <artifactId>maven-compiler-plugin</artifactId> |
181 | | - <version>3.13.0</version> |
| 209 | + <version>${maven-compiler-plugin.version}</version> |
182 | 210 | </plugin> |
183 | 211 | <plugin> |
184 | 212 | <groupId>org.apache.maven.plugins</groupId> |
185 | 213 | <artifactId>maven-surefire-plugin</artifactId> |
186 | | - <version>3.3.1</version> |
| 214 | + <version>${maven-surefire-plugin.version}</version> |
187 | 215 | </plugin> |
188 | 216 | <plugin> |
189 | 217 | <groupId>org.apache.maven.plugins</groupId> |
190 | 218 | <artifactId>maven-javadoc-plugin</artifactId> |
191 | | - <version>3.8.0</version> |
| 219 | + <version>${maven-javadoc-plugin.version}</version> |
192 | 220 | </plugin> |
193 | 221 | <plugin> |
194 | 222 | <groupId>org.apache.maven.plugins</groupId> |
195 | 223 | <artifactId>maven-source-plugin</artifactId> |
196 | | - <version>3.3.1</version> |
| 224 | + <version>${maven-source-plugin.version}</version> |
197 | 225 | </plugin> |
198 | 226 | <plugin> |
199 | 227 | <groupId>org.apache.maven.plugins</groupId> |
200 | 228 | <artifactId>maven-gpg-plugin</artifactId> |
201 | | - <version>3.2.4</version> |
| 229 | + <version>${maven-gpg-plugin.version}</version> |
202 | 230 | </plugin> |
203 | 231 | <plugin> |
204 | 232 | <groupId>org.apache.maven.plugins</groupId> |
205 | 233 | <artifactId>maven-jar-plugin</artifactId> |
206 | | - <version>3.4.2</version> |
| 234 | + <version>${maven-jar-plugin.version}</version> |
207 | 235 | </plugin> |
208 | 236 | <plugin> |
209 | 237 | <groupId>org.apache.maven.plugins</groupId> |
210 | 238 | <artifactId>maven-deploy-plugin</artifactId> |
211 | | - <version>3.1.2</version> |
| 239 | + <version>${maven-deploy-plugin.version}</version> |
212 | 240 | </plugin> |
213 | 241 | <plugin> |
214 | 242 | <groupId>org.apache.maven.plugins</groupId> |
215 | 243 | <artifactId>maven-clean-plugin</artifactId> |
216 | | - <version>3.4.0</version> |
| 244 | + <version>${maven-clean-plugin.version}</version> |
217 | 245 | </plugin> |
218 | 246 | <plugin> |
219 | 247 | <groupId>org.cyclonedx</groupId> |
220 | 248 | <artifactId>cyclonedx-maven-plugin</artifactId> |
221 | | - <version>2.8.0</version> |
| 249 | + <version>${cyclonedx-maven-plugin.version}</version> |
222 | 250 | </plugin> |
223 | 251 | <plugin> |
224 | 252 | <groupId>org.jreleaser</groupId> |
225 | 253 | <artifactId>jreleaser-maven-plugin</artifactId> |
226 | | - <version>1.9.0</version> |
| 254 | + <version>${jreleaser-maven-plugin.version}</version> |
227 | 255 | </plugin> |
228 | 256 | <plugin> |
229 | 257 | <groupId>org.codehaus.mojo</groupId> |
230 | 258 | <artifactId>versions-maven-plugin</artifactId> |
231 | | - <version>2.17.1</version> |
| 259 | + <version>${versions-maven-plugin.version}</version> |
232 | 260 | </plugin> |
233 | 261 | </plugins> |
234 | 262 | </pluginManagement> |
|
0 commit comments