summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/pom.xml
diff options
context:
space:
mode:
authorSimon Rettberg2014-07-14 20:58:42 +0200
committerSimon Rettberg2014-07-14 20:58:42 +0200
commit67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107 (patch)
tree82b1d287d0b7304d2c5b8bc4d958694fd8fd2b4d /Dozentenmodul/pom.xml
parentConverted DMS to Maven project (1/2) (diff)
downloadtutor-module-67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107.tar.gz
tutor-module-67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107.tar.xz
tutor-module-67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107.zip
mavenization on its way...
Diffstat (limited to 'Dozentenmodul/pom.xml')
-rw-r--r--Dozentenmodul/pom.xml183
1 files changed, 183 insertions, 0 deletions
diff --git a/Dozentenmodul/pom.xml b/Dozentenmodul/pom.xml
new file mode 100644
index 00000000..02ab3756
--- /dev/null
+++ b/Dozentenmodul/pom.xml
@@ -0,0 +1,183 @@
+<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>bwlehrpool</groupId>
+ <artifactId>dmc</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <name>DozMod-Client</name>
+ <url>http://maven.apache.org</url>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>gui.intro.Login_GUI</mainClass>
+ </manifest>
+ </archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <minimizeJar>true</minimizeJar>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>mac</id>
+ <activation>
+ <os>
+ <name>mac os x</name>
+ </os>
+ </activation>
+ <properties>
+ <swt.groupId>org.eclipse.swt.carbon</swt.groupId>
+ <swt.artifactId>macosx</swt.artifactId>
+ </properties>
+ </profile>
+ <profile>
+ <id>windows</id>
+ <activation>
+ <os>
+ <family>windows</family>
+ </os>
+ </activation>
+ <properties>
+ <swt.groupId>org.eclipse.swt.win32.win32</swt.groupId>
+ <swt.artifactId>x86</swt.artifactId>
+ </properties>
+ </profile>
+ <profile>
+ <id>linux_64</id>
+ <activation>
+ <os>
+ <name>linux</name>
+ <arch>amd64</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.groupId>org.eclipse.swt.org.eclipse.swt.gtk.linux.x86_64.4.3.swt</swt.groupId>
+ <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
+ <!--swt.groupId>org.eclipse.swt.gtk.linux</swt.groupId>
+ <swt.artifactId>x86_64</swt.artifactId-->
+ </properties>
+ </profile>
+ </profiles>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.thrift</groupId>
+ <artifactId>libthrift</artifactId>
+ <version>0.9.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-net</groupId>
+ <artifactId>commons-net</artifactId>
+ <version>3.3</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.toedter</groupId>
+ <artifactId>jcalendar</artifactId>
+ <version>1.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.jdatepicker</groupId>
+ <artifactId>jdatepicker</artifactId>
+ <version>1.3.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>${swt.groupId}</groupId>
+ <artifactId>${swt.artifactId}</artifactId>
+ <version>4.3</version>
+ <!--version>3.3.0-v3346</version-->
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.17</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.ini4j</groupId>
+ <artifactId>ini4j</artifactId>
+ <version>0.5.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.8</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.openslx.bwlp</groupId>
+ <artifactId>master-sync-shared</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>bwlehrpool</groupId>
+ <artifactId>dms</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
+