Advertisement
22vortex22

Untitled

Aug 23rd, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.48 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>com.gazamo.hub</groupId>
  4.   <artifactId>Hub</artifactId>
  5.   <version>1.0.0</version>
  6.   <name>Hub</name>
  7.   <description>A Hub Plugin</description>
  8.   <properties>
  9.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10.     </properties>
  11.  
  12.     <repositories>
  13.         <repository>
  14.             <id>gazamo-snapshot-repo</id>
  15.             <url>http://trident.gazamo.com:8081/nexus/content/repositories/snapshots/</url>
  16.             <releases>
  17.                 <enabled>false</enabled>
  18.             </releases>
  19.             <snapshots>
  20.                 <enabled>true</enabled>
  21.             </snapshots>
  22.         </repository>
  23.     </repositories>
  24.  
  25.     <dependencies>
  26.         <dependency>
  27.             <groupId>com.trident</groupId>
  28.             <artifactId>BaseCore</artifactId>
  29.             <version>1.0-SNAPSHOT</version>
  30.         </dependency>
  31.     </dependencies>
  32.  
  33.  
  34.     <build>
  35.         <plugins>
  36.             <plugin>
  37.                 <groupId>org.apache.maven.plugins</groupId>
  38.                 <artifactId>maven-compiler-plugin</artifactId>
  39.                 <version>3.1</version>
  40.                 <configuration>
  41.                     <source>1.7</source>
  42.                     <target>1.7</target>
  43.                     <complianceLevel>1.7</complianceLevel>
  44.                     <encoding>UTF-8</encoding>
  45.                 </configuration>
  46.             </plugin>
  47.         </plugins>
  48.     </build>
  49. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement