Advertisement
KamaJo

mvn config

Jan 28th, 2022
786
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.57 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>net.codejava</groupId>
  4.   <artifactId>CostManager</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <packaging>war</packaging>
  7.  
  8.   <properties>
  9.   <spring.version>5.1.5.RELEASE</spring.version>
  10.   <hibernate.version>5.4.1.Final</hibernate.version>
  11.   </properties>
  12.  
  13.   <dependencies>
  14.  
  15.  
  16.  
  17.      <dependency>
  18.        <groupId>org.springframework</groupId>
  19.        <artifactId>spring-context</artifactId>
  20.        <version>$(spring.version)</version>
  21.      </dependency>
  22.  
  23.      <dependency>
  24.        <groupId>org.springframework</groupId>
  25.        <artifactId>spring-webmvc</artifactId>
  26.        <version>$(spring.version)</version>
  27.      </dependency>
  28.      
  29.       <dependency>
  30.        <groupId>org.springframework</groupId>
  31.        <artifactId>spring-orm</artifactId>
  32.        <version>$(spring.version)</version>
  33.      </dependency>
  34.      
  35.       <dependency>
  36.        <groupId>org.springframework.data</groupId>
  37.        <artifactId>spring-data-jpa</artifactId>
  38.        <version>2.1.5.RELEASE</version>
  39.      </dependency>
  40.      
  41.       <dependency>
  42.        <groupId>org.hibernate</groupId>
  43.        <artifactId>hibernate-core</artifactId>
  44.        <version>$(hibernate.version)</version>
  45.      </dependency>
  46.      
  47.       <dependency>
  48.        <groupId>mysql</groupId>
  49.        <artifactId>mysql-connector-java</artifactId>
  50.        <version>8.0.14</version>
  51.        <scope>runtime</scope>
  52.        
  53.       <dependency>
  54.        <groupId>javax.servlet</groupId>
  55.        <artifactId>javax.servlet-api</artifactId>
  56.        <version>3.1.0</version>
  57.        <scope>provided</scope>
  58.      </dependency>
  59.      
  60.       <dependency>
  61.        <groupId>javax.servlet.jsp</groupId>
  62.        <artifactId>javax.servlet.jsp-api</artifactId>
  63.        <version>2.3.1</version>
  64.        <scope>provided</scope>
  65.      </dependency>
  66.      
  67.      <dependency>
  68.        <groupId>jstl</groupId>
  69.        <artifactId>jstl</artifactId>
  70.        <version>1.2</version>
  71.      </dependency>
  72.        
  73.     </dependency>
  74.      
  75.  
  76.   <build>
  77.     <plugins>
  78.       <plugin>
  79.         <artifactId>maven-compiler-plugin</artifactId>
  80.         <version>3.8.1</version>
  81.         <configuration>
  82.           <release>11</release>
  83.         </configuration>
  84.       </plugin>
  85.       <plugin>
  86.         <artifactId>maven-war-plugin</artifactId>
  87.         <version>3.2.3</version>
  88.       </plugin>
  89.     </plugins>
  90.   </build>
  91. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement