Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>udprog.vedes1</groupId>
  5. <artifactId>labor</artifactId>
  6. <packaging>jar</packaging>
  7. <version>1.0</version>
  8. <name>labor</name>
  9. <url>http://maven.apache.org</url>
  10.  
  11. <dependencies>
  12.  
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>4.8.2</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>maven</groupId>
  21. <artifactId>maven-jar-plugin</artifactId>
  22. <version>1.8.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.aspectj</groupId>
  26. <artifactId>aspectjrt</artifactId>
  27. <version>1.6.8</version>
  28. </dependency>
  29.  
  30. </dependencies>
  31.  
  32. <build>
  33. <plugins>
  34.  
  35. <plugin>
  36. <!-- Build an executable JAR -->
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-jar-plugin</artifactId>
  39. <version>2.4</version>
  40. <configuration>
  41. <archive>
  42. <manifest>
  43. <addClasspath>true</addClasspath>
  44. <classpathPrefix>lib/</classpathPrefix>
  45. <mainClass>udprog.vedes1.LZWBinFa</mainClass>
  46. </manifest>
  47. </archive>
  48. </configuration>
  49. </plugin>
  50.  
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <version>2.3.2</version>
  55. <configuration>
  56. <source>1.8</source>
  57. <target>1.8</target>
  58. </configuration>
  59. </plugin>
  60.  
  61. <plugin>
  62. <groupId>org.codehaus.mojo</groupId>
  63. <artifactId>aspectj-maven-plugin</artifactId>
  64. <version>1.6</version>
  65. <configuration>
  66. <complianceLevel>1.6</complianceLevel>
  67. </configuration>
  68. <executions>
  69. <execution>
  70. <goals>
  71. <goal>compile</goal>
  72. <goal>test-compile</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77.  
  78. </plugins>
  79. </build>
  80.  
  81.  
  82.  
  83.  
  84.  
  85. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement