Advertisement
Guest User

pom.xml

a guest
Jun 13th, 2018
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.63 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.  
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <groupId>Application</groupId>
  7.     <artifactId>Application</artifactId>
  8.     <version>1.0-SNAPSHOT</version>
  9.     <build>
  10.         <plugins>
  11.             <plugin>
  12.                 <groupId>org.apache.maven.plugins</groupId>
  13.                 <artifactId>maven-jar-plugin</artifactId>
  14.                 <configuration>
  15.                     <archive>
  16.                         <manifest>
  17.                             <addClasspath>true</addClasspath>
  18.                             <mainClass>Main</mainClass>
  19.                         </manifest>
  20.                     </archive>
  21.                 </configuration>
  22.             </plugin>
  23.             <plugin>
  24.                 <groupId>org.apache.maven.plugins</groupId>
  25.                 <artifactId>maven-compiler-plugin</artifactId>
  26.                 <version>3.5.1</version>
  27.                 <configuration>
  28.                     <source>10</source>
  29.                     <target>10</target>
  30.                 </configuration>
  31.             </plugin>
  32.         </plugins>
  33.     </build>
  34.     <dependencies>
  35.         <dependency>
  36.             <groupId>commons-lang</groupId>
  37.             <artifactId>commons-lang</artifactId>
  38.             <version>2.1</version>
  39.         </dependency>
  40.         <dependency>
  41.             <groupId>org.codehaus.plexus</groupId>
  42.             <artifactId>plexus-utils</artifactId>
  43.         </dependency>
  44.     </dependencies>
  45. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement