Skip to content

Commit 9e3df92

Browse files
committed
2.0
1 parent 614a4f2 commit 9e3df92

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.classpath

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src"/>
3+
<classpathentry kind="src" output="out/classes" path="src">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
49
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-13">
510
<attributes>
6-
<attribute name="module" value="true"/>
711
<attribute name="maven.pomderived" value="true"/>
812
</attributes>
913
</classpathentry>
@@ -12,5 +16,10 @@
1216
<attribute name="module" value="true"/>
1317
</attributes>
1418
</classpathentry>
19+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
20+
<attributes>
21+
<attribute name="maven.pomderived" value="true"/>
22+
</attributes>
23+
</classpathentry>
1524
<classpathentry kind="output" path="out/classes"/>
1625
</classpath>

.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1521
<nature>org.eclipse.jdt.core.javanature</nature>
1622
</natures>
1723
</projectDescription>

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
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+
<parent>
7+
<groupId>tech.uom.demo.console</groupId>
8+
<artifactId>uom-console-demos</artifactId>
9+
<version>2.0</version>
10+
</parent>
611
<groupId>tech.uom.demo.console</groupId>
712
<name>JSR385-Java12</name>
813
<description>Java 12 Demos for JSR 385</description>
914
<artifactId>jsr385-java12</artifactId>
10-
<version>1.0</version>
1115

1216
<!-- ======================================================= -->
1317
<!-- Build Settings -->

0 commit comments

Comments
 (0)