Skip to content

Commit cfa12cc

Browse files
committed
1 parent 4546b13 commit cfa12cc

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

cldr/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>tec.uom.tools</groupId>
66
<artifactId>uom-tools</artifactId>
7-
<version>0.1-SNAPSHOT</version>
7+
<version>0.1</version>
88
</parent>
99
<artifactId>uom-cldr-tools</artifactId>
1010
<name>Units of Measurement Tools for Unicode CLDR</name>

obix/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>tec.uom.tools</groupId>
55
<artifactId>uom-tools</artifactId>
6-
<version>0.1-SNAPSHOT</version>
6+
<version>0.1</version>
77
</parent>
88
<artifactId>uom-obix-tools</artifactId>
99
<name>Units of Measurement Tools for oBiX</name>

obix/src/main/java/tec/uom/tools/obix/ObixImporter.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,10 @@ public Set<SourceVersion> getSourceVersions() {
6767
* @param args
6868
*/
6969
public static void main(String[] args) {
70-
// TODO Auto-generated method stub
71-
70+
final Tool importer = new ObixImporter();
71+
int errorCode = importer.run(System.in, System.out, System.err, args);
72+
if (errorCode == 0) {
73+
System.out.println("Success.");
74+
}
7275
}
73-
7476
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>uom-tools</artifactId>
55
<groupId>tec.uom.tools</groupId>
6-
<version>0.1-SNAPSHOT</version>
6+
<version>0.1</version>
77
<parent>
88
<groupId>tec.uom</groupId>
99
<artifactId>uom-parent</artifactId>

0 commit comments

Comments
 (0)