Advertisement
Heruberuto

Untitled

May 20th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.49 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.         xmlns="http://maven.apache.org/POM/4.0.0"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>RPGEngine</groupId>
  8.     <artifactId>RPGEngine</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>junit</groupId>
  14.             <artifactId>junit</artifactId>
  15.             <version>4.12</version>
  16.             <scope>test</scope>
  17.         </dependency>
  18.     </dependencies>
  19.  
  20.     <build>
  21.         <sourceDirectory>src/main/java</sourceDirectory>
  22.         <plugins>
  23.             <plugin>
  24.                 <groupId>org.apache.maven.plugins</groupId>
  25.                 <artifactId>maven-jar-plugin</artifactId>
  26.                 <configuration>
  27.                     <archive>
  28.                         <manifest>
  29.                             <addClasspath>true</addClasspath>
  30.                             <mainClass>cz.cvut.fel.pr2.ullriher.semesterProject.Play</mainClass>
  31.                         </manifest>
  32.                     </archive>
  33.                 </configuration>
  34.             </plugin>
  35.         </plugins>
  36.         <finalName>RPGEngine</finalName>
  37.         <resources>
  38.             <resource>
  39.                 <directory>src/main/resources</directory>
  40.             </resource>
  41.         </resources>
  42.  
  43.     </build>
  44.  
  45. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement