Advertisement
Tanapone

Untitled

Oct 2nd, 2017
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 4.04 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.     <groupId>Project</groupId>
  5.     <artifactId>Project</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.     <packaging>war</packaging>
  8.     <build>
  9.         <sourceDirectory>src</sourceDirectory>
  10.         <plugins>
  11.             <plugin>
  12.                 <artifactId>maven-compiler-plugin</artifactId>
  13.                 <version>3.6.1</version>
  14.                 <configuration>
  15.                     <source>1.8</source>
  16.                     <target>1.8</target>
  17.                 </configuration>
  18.             </plugin>
  19.             <plugin>
  20.                 <artifactId>maven-war-plugin</artifactId>
  21.                 <version>3.0.0</version>
  22.                 <configuration>
  23.                     <warSourceDirectory>WebContent</warSourceDirectory>
  24.                 </configuration>
  25.             </plugin>
  26.         </plugins>
  27.     </build>
  28.     <dependencies>
  29.         <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
  30.         <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
  31.         <dependency>
  32.             <groupId>org.springframework</groupId>
  33.             <artifactId>spring-context</artifactId>
  34.             <version>4.3.3.RELEASE</version>
  35.         </dependency>
  36.         <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
  37.         <dependency>
  38.             <groupId>org.springframework</groupId>
  39.             <artifactId>spring-core</artifactId>
  40.             <version>4.3.3.RELEASE</version>
  41.         </dependency>
  42.         <!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
  43.         <dependency>
  44.             <groupId>org.springframework</groupId>
  45.             <artifactId>spring-beans</artifactId>
  46.             <version>4.3.3.RELEASE</version>
  47.         </dependency>
  48.         <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
  49.         <dependency>
  50.             <groupId>org.springframework</groupId>
  51.             <artifactId>spring-webmvc</artifactId>
  52.             <version>4.3.3.RELEASE</version>
  53.         </dependency>
  54.         <!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
  55.         <dependency>
  56.             <groupId>org.springframework</groupId>
  57.             <artifactId>spring-web</artifactId>
  58.             <version>4.3.3.RELEASE</version>
  59.         </dependency>
  60.         <dependency>
  61.             <groupId>org.hibernate</groupId>
  62.             <artifactId>hibernate</artifactId>
  63.             <version>3.5.4-Final</version>
  64.             <type>pom</type>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.hibernate</groupId>
  68.             <artifactId>hibernate-core</artifactId>
  69.             <version>4.3.8.Final</version>
  70.         </dependency>
  71.         <dependency>
  72.             <groupId>org.hibernate</groupId>
  73.             <artifactId>hibernate-search</artifactId>
  74.             <version>5.0.1.Final</version>
  75.         </dependency>
  76.         <dependency>
  77.             <groupId>org.hibernate</groupId>
  78.             <artifactId>hibernate-entitymanager</artifactId>
  79.             <version>4.3.8.Final</version>
  80.         </dependency>
  81.         <dependency>
  82.             <groupId>org.hibernate</groupId>
  83.             <artifactId>hibernate-commons-annotations</artifactId>
  84.             <version>3.2.0.Final</version>
  85.         </dependency>
  86.         <dependency>
  87.             <groupId>org.slf4j</groupId>
  88.             <artifactId>slf4j-api</artifactId>
  89.             <version>1.7.10</version>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>javax.validation</groupId>
  93.             <artifactId>validation-api</artifactId>
  94.             <version>1.1.0.Final</version>
  95.         </dependency>
  96.         <dependency>
  97.             <groupId>org.hibernate</groupId>
  98.             <artifactId>hibernate-validator</artifactId>
  99.             <version>5.3.2.Final</version>
  100.         </dependency>
  101.         <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  102.         <dependency>
  103.             <groupId>mysql</groupId>
  104.             <artifactId>mysql-connector-java</artifactId>
  105.             <version>6.0.6</version>
  106.         </dependency>
  107.         <dependency>
  108.             <groupId>com.github.noraui</groupId>
  109.             <artifactId>ojdbc7</artifactId>
  110.             <version>12.1.0.2</version>
  111.         </dependency>
  112.         <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
  113.         <dependency>
  114.             <groupId>javax.servlet</groupId>
  115.             <artifactId>jstl</artifactId>
  116.             <version>1.2</version>
  117.         </dependency>
  118.         <!-- https://mvnrepository.com/artifact/jstl/jstl -->
  119.         <dependency>
  120.             <groupId>jstl</groupId>
  121.             <artifactId>jstl</artifactId>
  122.             <version>1.2</version>
  123.         </dependency>
  124.     </dependencies>
  125. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement