Skip to content

Commit 1543a16

Browse files
committed
Tidy poms
1 parent 8206744 commit 1543a16

File tree

3 files changed

+9
-37
lines changed

3 files changed

+9
-37
lines changed

examples/example-helidon/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.example</groupId>
8+
<artifactId>example-helidon</artifactId>
9+
<version>1.0</version>
510

611
<parent>
712
<groupId>org.avaje</groupId>
813
<artifactId>java8-oss</artifactId>
914
<version>2.1</version>
1015
</parent>
1116

12-
<modelVersion>4.0.0</modelVersion>
13-
14-
<artifactId>example-helidon</artifactId>
15-
1617
<properties>
1718
<mainClass>org.example.Main</mainClass>
1819
<helidon-version>2.0.1</helidon-version>
19-
<dinject-version>2.1</dinject-version>
20+
<dinject-version>2.2</dinject-version>
2021
</properties>
2122

2223
<dependencies>

examples/example-javalin/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<main.class>org.example.myapp.Main</main.class>
1919
<swagger.version>2.0.8</swagger.version>
2020
<kotlin.version>1.3.31</kotlin.version>
21+
<dinject-version>2.2</dinject-version>
2122
</properties>
2223

2324
<dependencies>
@@ -43,7 +44,7 @@
4344
<dependency>
4445
<groupId>io.dinject</groupId>
4546
<artifactId>dinject</artifactId>
46-
<version>1.18</version>
47+
<version>${dinject-version}</version>
4748
</dependency>
4849

4950
<dependency>
@@ -69,7 +70,7 @@
6970
<dependency>
7071
<groupId>io.dinject</groupId>
7172
<artifactId>dinject-generator</artifactId>
72-
<version>1.18</version>
73+
<version>${dinject-version}</version>
7374
<scope>provided</scope>
7475
</dependency>
7576

generator-javalin/pom.xml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -29,37 +29,7 @@
2929
<artifactId>webgen-core</artifactId>
3030
<version>1.19-SNAPSHOT</version>
3131
</dependency>
32-
<!--
33-
<dependency>
34-
<groupId>javax.inject</groupId>
35-
<artifactId>javax.inject</artifactId>
36-
<version>1</version>
37-
</dependency>
3832

39-
<dependency>
40-
<groupId>javax.validation</groupId>
41-
<artifactId>validation-api</artifactId>
42-
<version>2.0.1.Final</version>
43-
</dependency>
44-
45-
<dependency>
46-
<groupId>com.fasterxml.jackson.core</groupId>
47-
<artifactId>jackson-databind</artifactId>
48-
<version>${jackson-databind.version}</version>
49-
</dependency>
50-
51-
<dependency>
52-
<groupId>io.swagger.core.v3</groupId>
53-
<artifactId>swagger-models</artifactId>
54-
<version>${swagger.version}</version>
55-
</dependency>
56-
57-
<dependency>
58-
<groupId>io.swagger.core.v3</groupId>
59-
<artifactId>swagger-annotations</artifactId>
60-
<version>${swagger.version}</version>
61-
</dependency>
62-
-->
6333
<!-- test dependencies -->
6434

6535
<dependency>

0 commit comments

Comments
 (0)