summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/pom.xml
diff options
context:
space:
mode:
authorSimon Rettberg2015-07-27 15:21:16 +0200
committerSimon Rettberg2015-07-27 15:21:16 +0200
commitcbf24e0288e6004e3e9140d67603573afb16c24e (patch)
tree3e80ed989d44b97d02d9dc160a89f9e681116e67 /dozentenmodul/pom.xml
parent[client] minor changes to jtable handling (diff)
downloadtutor-module-cbf24e0288e6004e3e9140d67603573afb16c24e.tar.gz
tutor-module-cbf24e0288e6004e3e9140d67603573afb16c24e.tar.xz
tutor-module-cbf24e0288e6004e3e9140d67603573afb16c24e.zip
[client] One step forward and two steps back...
Diffstat (limited to 'dozentenmodul/pom.xml')
-rw-r--r--dozentenmodul/pom.xml194
1 files changed, 11 insertions, 183 deletions
diff --git a/dozentenmodul/pom.xml b/dozentenmodul/pom.xml
index fa88699e..e82bce9b 100644
--- a/dozentenmodul/pom.xml
+++ b/dozentenmodul/pom.xml
@@ -63,74 +63,25 @@
</configuration>
</plugin>
<plugin>
- <inherited>true</inherited>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <version>1.3.1</version>
- <executions>
- <execution>
- <id>enforce-maven-3</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireMavenVersion>
- <version>3.0.0</version>
- </requireMavenVersion>
- </rules>
- <fail>true</fail>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>2.10</version>
+ <artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
- <id>copy</id>
- <phase>prepare-package</phase>
+ <phase>package</phase>
<goals>
- <goal>unpack</goal>
+ <goal>single</goal>
</goals>
- <configuration>
- <excludes>META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA</excludes>
- <outputDirectory>${project.build.outputDirectory}</outputDirectory>
- <overWriteIfNewer>true</overWriteIfNewer>
- <artifactItems>
- <artifactItem>
- <groupId>com.janprach.multiplatform-swt</groupId>
- <artifactId>multiplatform-swt-loader</artifactId>
- <version>4.4</version>
- <classifier>multiplatform</classifier>
- </artifactItem>
- </artifactItems>
- </configuration>
</execution>
</executions>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>1.2.5.RELEASE</version>
<configuration>
- <mainClass>${main.class}</mainClass>
- <excludes>
- <exclude>
- <groupId>org.eclipse.swt</groupId>
- <artifactId>${swt.artifactId}</artifactId>
- </exclude>
- </excludes>
+ <archive>
+ <manifest>
+ <mainClass>${main.class}</mainClass>
+ </manifest>
+ </archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
</configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
</plugin>
</plugins>
@@ -148,119 +99,8 @@
</includes>
</resource>
</resources>
- <pluginManagement>
- <plugins>
- <!--This plugin's configuration is used to store Eclipse m2e settings
- only. It has no influence on the Maven build itself. -->
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>
- org.apache.maven.plugins
- </groupId>
- <artifactId>
- maven-dependency-plugin
- </artifactId>
- <versionRange>
- [2.10,)
- </versionRange>
- <goals>
- <goal>unpack</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
</build>
- <profiles>
- <profile>
- <id>linux32</id>
- <activation>
- <os>
- <family>linux</family>
- <arch>i386</arch>
- </os>
- </activation>
- <properties>
- <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
- </properties>
- </profile>
- <profile>
- <id>linux64</id>
- <activation>
- <os>
- <family>linux</family>
- <arch>amd64</arch>
- </os>
- </activation>
- <properties>
- <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
- </properties>
- </profile>
- <profile>
- <id>macosx32</id>
- <activation>
- <os>
- <family>macosx</family>
- <arch>i386</arch>
- </os>
- </activation>
- <properties>
- <swt.artifactId>org.eclipse.swt.cocoa.macosx</swt.artifactId>
- </properties>
- </profile>
- <profile>
- <id>macosx64</id>
- <activation>
- <os>
- <family>macosx</family>
- <arch>x86_64</arch>
- </os>
- </activation>
- <properties>
- <swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId>
- </properties>
- </profile>
- <profile>
- <id>win32</id>
- <activation>
- <os>
- <family>windows</family>
- <arch>x86</arch>
- </os>
- </activation>
- <properties>
- <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
- </properties>
- </profile>
- <profile>
- <id>win64</id>
- <activation>
- <os>
- <family>windows</family>
- <arch>amd64</arch>
- </os>
- </activation>
- <properties>
- <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
- </properties>
- </profile>
- </profiles>
-
<dependencies>
<dependency>
<groupId>org.apache.thrift</groupId>
@@ -275,12 +115,6 @@
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>org.eclipse.swt</groupId>
- <artifactId>${swt.artifactId}</artifactId>
- <version>${swt.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>[1.2.15,1.2.17]</version>
@@ -320,12 +154,6 @@
<artifactId>joda-time</artifactId>
<version>2.8</version>
</dependency>
- <dependency>
- <groupId>org.eclipse.jface</groupId>
- <artifactId>org.eclipse.jface</artifactId>
- <version>3.8.0.v20120521-2329</version>
- <scope>compile</scope>
- </dependency>
</dependencies>
</project>