Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.  
  5. <!-- File generated by Telosys Tools Generator ( version 3.0.0 ) - Date 2018-01-17 ( Time 11:40:42 ) -->
  6.  
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>group.to.be.defined</groupId>
  9. <artifactId>artifact-to-be-defined</artifactId>
  10. <version>0.1</version>
  11. <packaging>jar</packaging>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <java.version>1.7</java.version>
  16. </properties>
  17.  
  18. <dependencies>
  19.  
  20. <!-- Standard Java "inject" dependency ( JSR-330 ) -->
  21. <dependency>
  22. <groupId>javax.inject</groupId>
  23. <artifactId>javax.inject</artifactId>
  24. <version>1</version>
  25. </dependency>
  26.  
  27. <!-- Bean validation -->
  28. <dependency>
  29. <groupId>javax.validation</groupId>
  30. <artifactId>validation-api</artifactId>
  31. <version>1.0.0.GA</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.hibernate</groupId>
  35. <artifactId>hibernate-validator</artifactId>
  36. <version>4.3.1.Final</version>
  37. </dependency>
  38.  
  39. <!-- Dependencies for Unit Testing -->
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>4.12</version>
  44. <scope>test</scope>
  45. </dependency>
  46.  
  47. <!-- JPA Hibernate implementation -->
  48. <dependency>
  49. <groupId>org.hibernate</groupId>
  50. <artifactId>hibernate-core</artifactId>
  51. <version>4.3.1.Final</version>
  52. </dependency>
  53.  
  54. <dependency>
  55. <groupId>org.hibernate</groupId>
  56. <artifactId>hibernate-entitymanager</artifactId>
  57. <version>4.3.1.Final</version>
  58. </dependency>
  59.  
  60. <!-- Mapper for mapping JpaRecord - Record -->
  61. <dependency>
  62. <groupId>org.modelmapper</groupId>
  63. <artifactId>modelmapper</artifactId>
  64. <version>0.6.2</version>
  65. </dependency>
  66.  
  67. <!-- H2 JDBC driver for JUnit tests -->
  68. <dependency>
  69. <groupId>com.h2database</groupId>
  70. <artifactId>h2</artifactId>
  71. <version>1.4.181</version>
  72. <scope>test</scope>
  73. </dependency>
  74.  
  75. <!-- JPA 2.0 with Hibernate 4.2 implementation -->
  76. <dependency>
  77. <groupId>org.hibernate.javax.persistence</groupId>
  78. <artifactId>hibernate-jpa-2.0-api</artifactId> <!-- javax.persistence.* -->
  79. <version>1.0.1.Final</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.hibernate</groupId>
  83. <artifactId>hibernate-entitymanager</artifactId> <!-- org.hibernate.ejb.* -->
  84. <version>4.2.2.Final</version>
  85. </dependency>
  86.  
  87. <!-- Mapper for mapping JpaRecord - Record -->
  88. <dependency>
  89. <groupId>org.modelmapper</groupId>
  90. <artifactId>modelmapper</artifactId>
  91. <version>0.6.2</version>
  92. </dependency>
  93.  
  94. <!-- H2 JDBC driver for JUnit tests -->
  95. <dependency>
  96. <groupId>com.h2database</groupId>
  97. <artifactId>h2</artifactId>
  98. <version>1.4.181</version>
  99. <scope>test</scope>
  100. </dependency>
  101.  
  102. </dependencies>
  103.  
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <version>2.5.1</version>
  110. <configuration>
  111. <source>${java.version}</source>
  112. <target>${java.version}</target>
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </build>
  117.  
  118. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement