Advertisement
Guest User

Fickschnulze

a guest
Nov 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>de.ostfalia.swt</groupId>
  7. <artifactId>progaufgabe_2</artifactId>
  8. <version>1.1</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>progaufgabe_2</name>
  12. <url>http://maven.apache.org</url>
  13.  
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17.  
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>3.8.1</version>
  23. <scope>test</scope>
  24. </dependency>
  25. </dependencies>
  26.  
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-jar-plugin</artifactId>
  32. <version>3.1.0</version>
  33. <configuration>
  34. <archive>
  35. <manifest>
  36. <addClasspath>true</addClasspath>
  37. <classpathPrefix>lib/</classpathPrefix>
  38. <mainClass>de.ostfalia.swt.progaufgabe_2.Main</mainClass>
  39. </manifest>
  40. </archive>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45.  
  46. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement