summaryrefslogblamecommitdiffstats
path: root/dozentenmodul/pom.xml
blob: 027520e7ab3cfa7f27c1fd2bdf56a493bf529f49 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                                        

                                                                                                           
 



                                              
 
                                  
                                                                      
             
                                                                                                  
              

                                                                                  
                                                               
                                                                                             
                     
 

                            
                                                   

                                                                                                                      
                                                        





                                                                   










                                                                                                                     



                                                     




                                

                                                                                 
                                                      

                                                   

                                                                      

                                                                                     

                                                        







                                                                                                         

                                                                              
                                                        
                                               

                                                            
                                                                                       


                                                
                                                                           










                                                                           
                                                                              
                                                        

                                                   
                                                                      
                                                       
                                                                           
                                                        

                                                    
                                               


                                                                                            

                                                                                                                               
                                                           




                                                                                                                                  



                                                                                                    
                                                
                                 
                          
 















                                                                          

                            





                                                                   

                                                                
                                                         
                                              
                             
                            

                                                          
                                                
                                              
                             
                            


                                                                                   
                                              
                             

                                                      
                                                           






                                                                    
                                              
                             
                            




                                                           



                                                          
                                              
                             
                       

          
<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>dozmod-client</artifactId>
	<version>1.0-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>DozMod-Client</name>
	<url>https://git.openslx.org/openslx-ng/tutor-module.git</url>
	<scm>
		<connection>scm:git:git://git.openslx.org/openslx-ng/tutor-module.git</connection>
	</scm>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<main.class>org.openslx.dozmod.App</main.class>
		<maven.build.timestamp.format>yyyy.MM.dd HH:mm</maven.build.timestamp.format>
	</properties>

	<repositories>
		<repository>
			<id>mltk-repo-snapshot</id>
			<url>http://mltk-services.ruf.uni-freiburg.de:8081/nexus/content/repositories/snapshots/</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
				<updatePolicy>always</updatePolicy>
			</snapshots>
		</repository>
		<repository>
			<id>mltk-repo-release</id>
			<url>http://mltk-services.ruf.uni-freiburg.de:8081/nexus/content/repositories/releases/</url>
			<releases>
				<enabled>true</enabled>
				<updatePolicy>always</updatePolicy>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>jitpack.io</id>
			<url>https://jitpack.io</url>
		</repository>
	</repositories>

	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>buildnumber-maven-plugin</artifactId>
				<version>1.4</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>create</goal>
							<goal>create-timestamp</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<doCheck>false</doCheck>
					<doUpdate>false</doUpdate>
					<timestampPropertyName>revision.timestamp</timestampPropertyName>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.6.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
					<compilerArgument>-Xlint:all</compilerArgument>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<executions>
					<execution>
						<id>default-jar</id>
						<phase>none</phase>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>3.0.0</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<archive>
						<manifest>
							<mainClass>${main.class}</mainClass>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
						</manifest>
						<manifestEntries>
							<Build-Timestamp>${maven.build.timestamp}</Build-Timestamp>
							<Build-Revision>${buildNumber}</Build-Revision>
							<Build-Revision-Timestamp>${revision.timestamp}</Build-Revision-Timestamp>
						</manifestEntries>
					</archive>
					<descriptorRefs>
						<descriptorRef>jar-with-dependencies</descriptorRef>
					</descriptorRefs>
				</configuration>
			</plugin>
		</plugins>

		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<includes>
					<include>**</include>
				</includes>
			</resource>
			<resource>
				<directory>src/main/properties</directory>
				<includes>
					<include>**/*.properties</include>
				</includes>
			</resource>
		</resources>
	</build>

	<dependencies>
		<dependency>
			<groupId>org.openslx.bwlp</groupId>
			<artifactId>master-sync-shared</artifactId>
			<version>1.1-SNAPSHOT</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.openslx.ecp</groupId>
			<artifactId>ecp-client-lean</artifactId>
			<version>0.0.3-SNAPSHOT</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>joda-time</groupId>
			<artifactId>joda-time</artifactId>
			<version>2.9.9</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.github.decbin</groupId>
			<artifactId>JDatePicker</artifactId>
			<version>af657d4d12645efa2eb211d780779e4712d94673</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.openslx</groupId>
			<artifactId>proxy-vole</artifactId>
			<version>0.0.4-SNAPSHOT</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>[4.5.3,4.5.99]</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>[2.0,]</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.kamranzafar</groupId>
			<artifactId>jtar</artifactId>
			<version>2.3</version>
			<scope>compile</scope>
		</dependency>
	</dependencies>
</project>