Advertisement
ExtremeLyrics

Untitled

Jun 21st, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.32 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.     <modelVersion>4.0.0</modelVersion>
  3.     <groupId>us.rpvp.eloserver</groupId>
  4.     <artifactId>EloServer</artifactId>
  5.     <version>1.0</version>
  6.     <name>EloServer</name>
  7.     <url>http://realmsofpvp.net/</url>
  8.     <repositories>
  9.         <repository>
  10.             <id>fanciful-mvn-repo</id>
  11.             <url>https://raw.github.com/mkremins/fanciful/mvn-repo/</url>
  12.             <snapshots>
  13.                 <enabled>true</enabled>
  14.                 <updatePolicy>always</updatePolicy>
  15.             </snapshots>
  16.         </repository>
  17.     </repositories>
  18.     <build>
  19.         <defaultGoal>clean install</defaultGoal>
  20.         <finalName>${project.name}</finalName>
  21.         <resources>
  22.             <resource>
  23.                 <filtering>true</filtering>
  24.                 <directory>${project.basedir}/src/main/resources</directory>
  25.             </resource>
  26.         </resources>
  27.         <plugins>
  28.             <plugin>
  29.                 <groupId>org.apache.maven.plugins</groupId>
  30.                 <artifactId>maven-compiler-plugin</artifactId>
  31.                 <version>3.1</version>
  32.                 <configuration>
  33.                     <source>1.7</source>
  34.                     <target>1.7</target>
  35.                 </configuration>
  36.             </plugin>
  37.             <plugin>
  38.                 <groupId>org.apache.maven.plugins</groupId>
  39.                 <artifactId>maven-shade-plugin</artifactId>
  40.                 <version>1.4</version>
  41.                 <executions>
  42.                     <execution>
  43.                         <phase>package</phase>
  44.                         <goals>
  45.                             <goal>shade</goal>
  46.                         </goals>
  47.                         <configuration>
  48.                             <minimizeJar>true</minimizeJar>
  49.                         </configuration>
  50.                     </execution>
  51.                 </executions>
  52.             </plugin>
  53.         </plugins>
  54.     </build>
  55.     <dependencies>
  56.         <dependency>
  57.             <groupId>mkremins</groupId>
  58.             <artifactId>fanciful</artifactId>
  59.             <version>0.1.2</version>
  60.         </dependency>
  61.     </dependencies>
  62. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement