Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.44 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/maven-v4_0_0.xsd">
  4.  
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <groupId>appjava</groupId>
  7.     <artifactId>ou2</artifactId>
  8.     <packaging>jar</packaging>
  9.     <version>v1</version>
  10.     <name>ou2</name>
  11.  
  12.     <properties>
  13.         <maven.compiler.source>1.8</maven.compiler.source>
  14.         <maven.compiler.target>1.8</maven.compiler.target>
  15.     </properties>
  16.  
  17.     <build>
  18.         <plugins>
  19.             <plugin>
  20.  
  21.                 <artifactId>maven-jar-plugin</artifactId>
  22.                 <version>2.3.1</version>
  23.                 <configuration>
  24.                     <archive>
  25.                         <manifest>
  26.                             <addClasspath>true</addClasspath>
  27.                             <mainClass>Main</mainClass>
  28.                         </manifest>
  29.                     </archive>
  30.                     <outputDirectory>.</outputDirectory>
  31.                     <finalName>Main</finalName>
  32.                 </configuration>
  33.  
  34.             </plugin>
  35.         </plugins>
  36.     </build>
  37.  
  38.     <dependencies>
  39.         <dependency>
  40.             <groupId>junit</groupId>
  41.             <artifactId>junit</artifactId>
  42.             <version>4.11</version>
  43.             <scope>test</scope>
  44.         </dependency>
  45.     </dependencies>
  46.  
  47. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement