Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>L3.2</groupId>
  8.     <artifactId>L3.2</artifactId>
  9.     <version>1.0</version>
  10.     <build>
  11.         <plugins>
  12.             <plugin>
  13.                 <groupId>org.apache.maven.plugins</groupId>
  14.                 <artifactId>maven-compiler-plugin</artifactId>
  15.                 <configuration>
  16.                     <source>1.7</source>
  17.                     <target>1.7</target>
  18.                 </configuration>
  19.             </plugin>
  20.             <plugin>
  21.                 <artifactId>maven-assembly-plugin</artifactId>
  22.                 <version>2.4</version>
  23.                 <executions>
  24.                     <execution>
  25.                         <id>make-assembly</id>
  26.                         <phase>package</phase>
  27.                         <goals>
  28.                             <goal>single</goal>
  29.                         </goals>
  30.                     </execution>
  31.                 </executions>
  32.                 <configuration>
  33.                     <archive>
  34.                         <manifest>
  35.                             <mainClass>Main.Main</mainClass>
  36.                         </manifest>
  37.                     </archive>
  38.                     <descriptorRefs>
  39.                         <descriptorRef>jar-with-dependencies</descriptorRef>
  40.                     </descriptorRefs>
  41.                 </configuration>
  42.             </plugin>
  43.         </plugins>
  44.     </build>
  45.  
  46.     <properties>
  47.         <com.h2database.h2.version>1.4.187</com.h2database.h2.version>
  48.         <mysql.mysql-connector-java.version>5.1.35</mysql.mysql-connector-java.version>
  49.         <org.hibernate.hibernate-core.version>4.3.10.Final</org.hibernate.hibernate-core.version>
  50.     </properties>
  51.  
  52.  
  53.     <dependencies>
  54.         <dependency>
  55.             <groupId>mysql</groupId>
  56.             <artifactId>mysql-connector-java</artifactId>
  57.             <version>${mysql.mysql-connector-java.version}</version>
  58.         </dependency>
  59.         <dependency>
  60.             <groupId>org.hibernate</groupId>
  61.             <artifactId>hibernate-core</artifactId>
  62.             <version>${org.hibernate.hibernate-core.version}</version>
  63.         </dependency>
  64.  
  65.  
  66.         <dependency>
  67.             <groupId>javax.persistence</groupId>
  68.             <artifactId>persistence-api</artifactId>
  69.             <version>1.0</version>
  70.         </dependency>
  71.  
  72.         <dependency>
  73.             <groupId>com.google.code.gson</groupId>
  74.             <artifactId>gson</artifactId>
  75.             <version>2.6.2</version>
  76.         </dependency>
  77.  
  78.         <dependency>
  79.             <groupId>javax.mail</groupId>
  80.             <artifactId>mail</artifactId>
  81.             <version>1.4</version>
  82.         </dependency>
  83.         <dependency>
  84.             <groupId>org.springframework</groupId>
  85.             <artifactId>spring-orm</artifactId>
  86.             <version>4.1.6.RELEASE</version>
  87.         </dependency>
  88.         <dependency>
  89.             <groupId>org.springframework</groupId>
  90.             <artifactId>spring-context</artifactId>
  91.             <version>4.0.3.RELEASE</version>
  92.         </dependency>
  93.  
  94.         <dependency>
  95.             <groupId>cglib</groupId>
  96.             <artifactId>cglib</artifactId>
  97.             <version>3.1</version>
  98.         </dependency>
  99.         <dependency>
  100.             <groupId>org.springframework</groupId>
  101.             <artifactId>spring-jdbc</artifactId>
  102.             <version>4.0.5.RELEASE</version>
  103.         </dependency>
  104.  
  105.  
  106.         <dependency>
  107.             <groupId>org.springframework</groupId>
  108.             <artifactId>spring-aspects</artifactId>
  109.             <version>4.0.3.RELEASE</version>
  110.         </dependency>
  111.  
  112.         <dependency>
  113.             <groupId>org.snmp4j</groupId>
  114.             <artifactId>snmp4j</artifactId>
  115.             <version>2.5.3</version>
  116.         </dependency>
  117.         <dependency>
  118.             <groupId>org.springframework.integration</groupId>
  119.             <artifactId>spring-integration-core</artifactId>
  120.             <version>2.2.1.RELEASE</version>
  121.         </dependency>
  122.  
  123.         <dependency>
  124.             <groupId>org.springframework.integration</groupId>
  125.             <artifactId>spring-integration-ip</artifactId>
  126.             <version>2.2.1.RELEASE</version>
  127.         </dependency>
  128.     </dependencies>
  129.  
  130. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement