]> git.gag.com Git - sw/motorsim/commitdiff
initial crafting of a Maven config file, incomplete gag/bdale
authorBdale Garbee <bdale@gag.com>
Thu, 14 Sep 2017 18:35:20 +0000 (12:35 -0600)
committerBdale Garbee <bdale@gag.com>
Thu, 14 Sep 2017 18:35:20 +0000 (12:35 -0600)
pom.xml [new file with mode: 0644]

diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..d45059d
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,71 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>org.altusmetrum</groupId>
+       <artifactId>motorsim</artifactId>
+       <version>2.0beta3+</version>
+
+       <dependencies>
+
+               <dependency>
+                       <groupId>log4j</groupId>
+                       <artifactId>log4j</artifactId>
+                       <version>1.2.16</version>
+                       <type>jar</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>xpp3</groupId>
+                       <artifactId>xpp3_min</artifactId>
+                       <version>1.1.4c</version>
+                       <type>jar</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>com.thoughtworks.xstream</groupId>
+                       <artifactId>xstream</artifactId>
+                       <version>1.3</version>
+                       <type>jar</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>jfree</groupId>
+                       <artifactId>jfreechart</artifactId>
+                       <version>1.0.13</version>
+                       <type>jar</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>com.miglayout</groupId>
+                       <artifactId>miglayout</artifactId>
+                       <version>3.7.4</version>
+                       <type>jar</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>4.10</version>
+                       <type>jar</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>javax.measure</groupId>
+                       <artifactId>jsr-275</artifactId>
+                       <version>1.0.0</version>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.jscience</groupId>
+                       <artifactId>jscience</artifactId>
+                       <version>4.3.1</version>
+               </dependency>
+
+       </dependencies>
+
+       <build>
+               <sourceDirectory>src</sourceDirectory>
+       </build>
+</project>