Skip to content

Commit 19a1e91

Browse files
committed
Little Sanitization
1 parent 48eb102 commit 19a1e91

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/target/
1+
*/target/
22
.settings
33
.classpath
44
.project

microservice-starter-helidon/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<version>1.0.0</version>
1717

1818
<properties>
19+
<maven.compiler.source>1.8</maven.compiler.source>
20+
<maven.compiler.target>1.8</maven.compiler.target>
1921
<mainClass>io.helidon.microprofile.server.Main</mainClass>
2022
</properties>
2123

microservice-starter-quarkus/pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44

55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>microservice-starter-quarkus</groupId>
6+
<groupId>microservice-starter</groupId>
77
<artifactId>microservice-starter-quarkus</artifactId>
88
<version>1.0.0</version>
99

1010
<properties>
11-
<java.version>1.8</java.version>
11+
<maven.compiler.source>1.8</maven.compiler.source>
12+
<maven.compiler.target>1.8</maven.compiler.target>
1213
<quarkus.version>1.2.0.Final</quarkus.version>
1314
</properties>
1415

microservice-starter-springboot/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33

44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>microservice-starter-springboot</groupId>
5+
<groupId>microservice-starter</groupId>
66
<artifactId>microservice-starter-springboot</artifactId>
77
<version>1.0.0</version>
88

0 commit comments

Comments
 (0)