privatecoder

pom.xml

Jul 14th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.26 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>privatecoder</groupId>
  8.     <artifactId>ormlite</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.  
  12.     <properties>
  13.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14.         <mainClass>Main</mainClass>
  15.         <ormlite.version>4.48</ormlite.version>
  16.         <h2.version>1.4.191</h2.version>
  17.     </properties>
  18.  
  19.  
  20.  
  21.     <dependencies>
  22.         <dependency>
  23.             <groupId>com.j256.ormlite</groupId>
  24.             <artifactId>ormlite-core</artifactId>
  25.             <version>${ormlite.version}</version>
  26.         </dependency>
  27.         <dependency>
  28.             <groupId>com.j256.ormlite</groupId>
  29.             <artifactId>ormlite-jdbc</artifactId>
  30.             <version>${ormlite.version}</version>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>com.h2database</groupId>
  34.             <artifactId>h2</artifactId>
  35.             <version>${h2.version}</version>
  36.         </dependency>
  37.     </dependencies>
  38.  
  39. </project>
Add Comment
Please, Sign In to add comment