Advertisement
N_Damyanov

Pom.xml

Jun 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.47 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>soft_uni</groupId>
  8.     <artifactId>introduction-to-hibernate</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <build>
  12.         <plugins>
  13.             <plugin>
  14.                 <groupId>org.apache.maven.plugins</groupId>
  15.                 <artifactId>maven-compiler-plugin</artifactId>
  16.                 <configuration>
  17.                     <source>11</source>
  18.                     <target>11</target>
  19.                 </configuration>
  20.             </plugin>
  21.         </plugins>
  22.     </build>
  23.  
  24.     <dependencies>
  25.         <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  26.         <dependency>
  27.             <groupId>org.hibernate</groupId>
  28.             <artifactId>hibernate-core</artifactId>
  29.             <version>5.4.2.Final</version>
  30.         </dependency>
  31.         <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  32.         <dependency>
  33.             <groupId>mysql</groupId>
  34.             <artifactId>mysql-connector-java</artifactId>
  35.             <version>8.0.16</version>
  36.         </dependency>
  37.         <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
  38.         <dependency>
  39.             <groupId>javax.xml.bind</groupId>
  40.             <artifactId>jaxb-api</artifactId>
  41.             <version>2.2.11</version>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>com.sun.xml.bind</groupId>
  45.             <artifactId>jaxb-core</artifactId>
  46.             <version>2.2.11</version>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>com.sun.xml.bind</groupId>
  50.             <artifactId>jaxb-impl</artifactId>
  51.             <version>2.2.11</version>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>javax.activation</groupId>
  55.             <artifactId>activation</artifactId>
  56.             <version>1.1.1</version>
  57.         </dependency>
  58.         <!-- https://mvnrepository.com/artifact/org.hibernate.javax.persistence/hibernate-jpa-2.1-api -->
  59.         <dependency>
  60.             <groupId>org.hibernate.javax.persistence</groupId>
  61.             <artifactId>hibernate-jpa-2.1-api</artifactId>
  62.             <version>1.0.2.Final</version>
  63.         </dependency>
  64.     </dependencies>
  65.  
  66. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement