Advertisement
Guest User

Untitled

a guest
May 10th, 2014
820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.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"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.  
  5.     <groupId>de.r2soft.empires.framework</groupId>
  6.     <artifactId>Framework</artifactId>
  7.     <version>Alpha-1.2</version>
  8.     <packaging>jar</packaging>
  9.  
  10.     <name>Framework</name>
  11.     <url>http://maven.apache.org</url>
  12.  
  13.     <properties>
  14.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.     </properties>
  16.  
  17.     <dependencies>
  18.  
  19.         <dependency>
  20.             <groupId>net.sf.javaml</groupId>
  21.             <artifactId>JavaML</artifactId>
  22.             <version>0.1.7</version>
  23.             <scope>system</scope>
  24.             <systemPath>${project.basedir}/lib/javaml-0.1.7/javaml-0.1.7.jar</systemPath>
  25.         </dependency>
  26.  
  27.         <dependency>
  28.             <groupId>junit</groupId>
  29.             <artifactId>junit</artifactId>
  30.             <version>4.4</version>
  31.             <scope>compile</scope>
  32.         </dependency>
  33.  
  34.         <dependency>
  35.             <groupId>org.apache.commons</groupId>
  36.             <artifactId>commons-math3</artifactId>
  37.             <version>3.0</version>
  38.             <scope>compile</scope>
  39.         </dependency>
  40.  
  41.         <dependency>
  42.             <groupId>org.apache.commons</groupId>
  43.             <artifactId>commons-math</artifactId>
  44.             <version>2.2</version>
  45.             <scope>compile</scope>
  46.         </dependency>
  47.  
  48.         <dependency>
  49.             <groupId>org.bouncycastle</groupId>
  50.             <artifactId>bcprov-jdk15on</artifactId>
  51.             <version>1.50</version>
  52.             <scope>compile</scope>
  53.         </dependency>
  54.  
  55.         <dependency>
  56.             <groupId>org.bouncycastle</groupId>
  57.             <artifactId>bcpkix-jdk15on</artifactId>
  58.             <version>1.47</version>
  59.             <scope>compile</scope>
  60.         </dependency>
  61.  
  62.         <dependency>
  63.             <groupId>dom4j</groupId>
  64.             <artifactId>dom4j</artifactId>
  65.             <version>1.6.1</version>
  66.             <scope>compile</scope>
  67.         </dependency>
  68.  
  69.         <dependency>
  70.             <groupId>com.google.collections</groupId>
  71.             <artifactId>google-collections</artifactId>
  72.             <version>1.0</version>
  73.             <scope>compile</scope>
  74.         </dependency>
  75.  
  76.         <dependency>
  77.             <groupId>log4j</groupId>
  78.             <artifactId>log4j</artifactId>
  79.             <version>1.2.17</version>
  80.             <scope>compile</scope>
  81.         </dependency>
  82.  
  83.  
  84.     </dependencies>
  85.  
  86.     <build>
  87.         <sourceDirectory>src</sourceDirectory>
  88.         <plugins>
  89.         <plugin>
  90.             <groupId>org.apache.maven.plugins</groupId>
  91.             <artifactId>maven-compiler-plugin</artifactId>
  92.             <version>3.1</version>
  93.             <configuration>
  94.                 <source>1.6</source>
  95.                 <target>1.6</target>
  96.             </configuration>
  97.         </plugin>
  98.         </plugins>
  99.     </build>
  100. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement