Advertisement
Guest User

whole pom

a guest
Aug 7th, 2013
8,695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.49 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>SocialManager</groupId>
  6.   <artifactId>DataLayer</artifactId>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <packaging>jar</packaging>
  9.  
  10.   <name>DataLayer</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.     <dependency>
  19.       <groupId>junit</groupId>
  20.       <artifactId>junit</artifactId>
  21.       <version>3.8.1</version>
  22.       <scope>test</scope>
  23.     </dependency>
  24.     <dependency>
  25.         <groupId>mysql</groupId>
  26.         <artifactId>mysql-connector-java</artifactId>
  27.         <version>5.1.10</version>
  28.     </dependency>
  29.  
  30.     <dependency>
  31.         <groupId>javassist</groupId>
  32.         <artifactId>javassist</artifactId>
  33.         <version>3.4.GA</version>
  34.     </dependency>
  35.    
  36.     <dependency>
  37.         <groupId>javax.persistence</groupId>
  38.         <artifactId>persistence-api</artifactId>
  39.         <version>1.0</version>
  40.     </dependency>
  41.  
  42.     <dependency>
  43.         <groupId>dom4j</groupId>
  44.         <artifactId>dom4j</artifactId>
  45.         <version>1.6.1</version>
  46.     </dependency>
  47.    
  48.     <dependency>
  49.         <groupId>org.hibernate</groupId>
  50.         <artifactId>hibernate-core</artifactId>
  51.         <version>4.2.1.Final</version>
  52.     </dependency>
  53.    
  54.     <dependency>
  55.         <groupId>org.hibernate</groupId>
  56.         <artifactId>hibernate-annotations</artifactId>
  57.         <version>3.5.6-Final</version>
  58.     </dependency>
  59.    
  60.     <dependency>
  61.         <groupId>org.jboss.logging</groupId>
  62.         <artifactId>jboss-logging</artifactId>
  63.         <version>3.1.0.CR2</version>
  64.     </dependency>
  65.    
  66.     <dependency>
  67.         <groupId>javax.transaction</groupId>
  68.         <artifactId>jta</artifactId>
  69.         <version>1.1</version>
  70.     </dependency>
  71.    
  72.     <dependency>
  73.         <groupId>antlr</groupId>
  74.         <artifactId>antlr</artifactId>
  75.         <version>2.7.6rc1</version>
  76.     </dependency>
  77.  
  78.     <dependency>
  79.         <groupId>org.slf4j</groupId>
  80.         <artifactId>slf4j-log4j12</artifactId>
  81.         <version>1.6.6</version>
  82.     </dependency>
  83.  
  84.   </dependencies>
  85.  
  86.   <build>
  87.     <plugins>
  88.         <plugin>
  89.             <groupId>org.apache.maven.plugins</groupId>
  90.             <artifactId>maven-jar-plugin</artifactId>
  91.             <version>2.3.2</version>
  92.         </plugin>
  93.     </plugins>
  94.   </build>
  95. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement