Advertisement
TerenceFerut

Dépendances Maven Hibernate

Feb 20th, 2024 (edited)
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.05 KB | Source Code | 0 0
  1.     <dependencies>
  2.         <dependency>
  3.             <groupId>org.openjfx</groupId>
  4.             <artifactId>javafx-controls</artifactId>
  5.             <version>21</version>
  6.         </dependency>
  7.         <dependency>
  8.             <groupId>org.openjfx</groupId>
  9.             <artifactId>javafx-fxml</artifactId>
  10.             <version>21</version>
  11.         </dependency>
  12.         <dependency>
  13.             <groupId>org.controlsfx</groupId>
  14.             <artifactId>controlsfx</artifactId>
  15.             <version>11.1.2</version>
  16.         </dependency>
  17.         <dependency>
  18.             <groupId>org.junit.jupiter</groupId>
  19.             <artifactId>junit-jupiter-api</artifactId>
  20.             <version>5.10.0</version>
  21.             <scope>test</scope>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.junit.jupiter</groupId>
  25.             <artifactId>junit-jupiter-engine</artifactId>
  26.             <version>5.10.0</version>
  27.             <scope>test</scope>
  28.         </dependency>
  29.  
  30.         <!-- Hibernate core -->
  31.         <dependency>
  32.             <groupId>org.hibernate</groupId>
  33.             <artifactId>hibernate-core</artifactId>
  34.             <version>5.4.30.Final</version>
  35.         </dependency>
  36.         <!-- SQLite JDBC Driver -->
  37.         <dependency>
  38.             <groupId>org.xerial</groupId>
  39.             <artifactId>sqlite-jdbc</artifactId>
  40.             <version>3.44.1.0</version>
  41.         </dependency>
  42.         <!-- Java Persistence API -->
  43.         <dependency>
  44.             <groupId>jakarta.persistence</groupId>
  45.             <artifactId>jakarta.persistence-api</artifactId>
  46.             <version>2.2.3</version>
  47.         </dependency>
  48.  
  49.         <dependency>
  50.             <groupId>jakarta.platform</groupId>
  51.             <artifactId>jakarta.jakartaee-api</artifactId>
  52.             <version>8.0.0</version>
  53.             <scope>provided</scope>
  54.         </dependency>
  55.         <dependency>
  56.             <groupId>javax</groupId>
  57.             <artifactId>javaee-api</artifactId>
  58.             <version>8.0.1</version>
  59.         </dependency>
  60.  
  61.  
  62.     </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement