Advertisement
ModernDragoness

WEWO pom.xml

Mar 21st, 2014
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.65 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>me.sgray.plugin</groupId>
  4.   <artifactId>WEWandOff</artifactId>
  5.   <version>0.0.2</version>
  6.   <packaging>jar</packaging>
  7.   <name>WEWandOff</name>
  8.   <repositories>
  9.     <repository>
  10.       <id>bukkit-repo</id>
  11.       <url>http://repo.bukkit.org/content/groups/public/</url>
  12.     </repository>
  13.     <repository>
  14.       <id>sk89q-repo</id>
  15.       <url>http://maven.sk89q.com/artifactory/repo/</url>
  16.     </repository>
  17.   </repositories>
  18.   <dependencies>
  19.     <dependency>
  20.       <groupId>org.bukkit</groupId>
  21.       <artifactId>bukkit</artifactId>
  22.       <version>[1.7.2-R0.3,]</version>
  23.     </dependency>
  24.     <dependency>
  25.       <groupId>com.sk89q</groupId>
  26.       <artifactId>worldedit</artifactId>
  27.       <version>5.5.9-SNAPSHOT</version>
  28.     </dependency>
  29.   </dependencies>
  30.   <properties>
  31.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  32.   </properties>
  33.   <build>
  34.     <sourceDirectory>src/java</sourceDirectory>
  35.     <resources>
  36.       <resource>
  37.         <directory>src/resources</directory>
  38.         <excludes>
  39.           <exclude>**/*.java</exclude>
  40.         </excludes>
  41.       </resource>
  42.     </resources>
  43.     <plugins>
  44.       <plugin>
  45.         <artifactId>maven-compiler-plugin</artifactId>
  46.         <version>2.3.2</version>
  47.         <configuration>
  48.           <source>1.7</source>
  49.           <target>1.7</target>
  50.         </configuration>
  51.       </plugin>
  52.     </plugins>
  53.   </build>
  54. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement