| @@ -1,15 +1,47 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |||||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |||||
| <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"> | 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> | <modelVersion>4.0.0</modelVersion> | ||||
| <groupId>de.uni-luebeck.mi.projmi6</groupId> | |||||
| <artifactId>projmi6</artifactId> | |||||
| <version>1.0-SNAPSHOT</version> | |||||
| <groupId>imi</groupId> | |||||
| <artifactId>projMI-Gruppe06</artifactId> | |||||
| <version>1.0</version> | |||||
| <name>Gruppe 06 ProjektMI</name> | |||||
| <build> | <build> | ||||
| <plugins> | <plugins> | ||||
| <plugin> | <plugin> | ||||
| <artifactId>maven-assembly-plugin</artifactId> | |||||
| <executions> | |||||
| <execution> | |||||
| <phase>package</phase> | |||||
| <goals> | |||||
| <goal>single</goal> | |||||
| </goals> | |||||
| </execution> | |||||
| </executions> | |||||
| <configuration> | |||||
| <archive> | |||||
| <manifest> | |||||
| <addClasspath>true</addClasspath> | |||||
| <mainClass>App</mainClass> | |||||
| </manifest> | |||||
| </archive> | |||||
| <descriptorRefs> | |||||
| <descriptorRef>jar-with-dependencies</descriptorRef> | |||||
| </descriptorRefs> | |||||
| </configuration> | |||||
| </plugin> | |||||
| <plugin> | |||||
| <artifactId>maven-jar-plugin</artifactId> | |||||
| <configuration> | |||||
| <archive> | |||||
| <manifest> | |||||
| <addClasspath>true</addClasspath> | |||||
| <classpathPrefix>lib/</classpathPrefix> | |||||
| <mainClass>App</mainClass> | |||||
| </manifest> | |||||
| </archive> | |||||
| </configuration> | |||||
| </plugin> | |||||
| <plugin> | |||||
| <groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-compiler-plugin</artifactId> | <artifactId>maven-compiler-plugin</artifactId> | ||||
| <configuration> | <configuration> | ||||
| @@ -19,6 +51,21 @@ | |||||
| </plugin> | </plugin> | ||||
| </plugins> | </plugins> | ||||
| </build> | </build> | ||||
| <dependencies> | |||||
| <dependency> | |||||
| <groupId>mysql</groupId> | |||||
| <artifactId>mysql-connector-java</artifactId> | |||||
| <version>5.1.36</version> | |||||
| </dependency> | |||||
| <dependency> | |||||
| <groupId>ca.uhn.hapi</groupId> | |||||
| <artifactId>hapi-base</artifactId> | |||||
| <version>2.2</version> | |||||
| </dependency> | |||||
| <dependency> | |||||
| <groupId>ca.uhn.hapi</groupId> | |||||
| <artifactId>hapi-structures-v251</artifactId> | |||||
| <version>2.2</version> | |||||
| </dependency> | |||||
| </dependencies> | |||||
| </project> | </project> | ||||