1
0

pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <project xmlns="http://maven.apache.org/POM/4.0.0">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>id.co.hanoman</groupId>
  4. <artifactId>MWDAO</artifactId>
  5. <version>1.0</version>
  6. <packaging>jar</packaging>
  7. <properties>
  8. <java.version>1.8</java.version>
  9. <maven.compiler.source>1.8</maven.compiler.source>
  10. <maven.compiler.target>1.8</maven.compiler.target>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <!-- Gson -->
  15. <dependency>
  16. <groupId>com.google.code.gson</groupId>
  17. <artifactId>gson</artifactId>
  18. <version>1.4</version>
  19. </dependency>
  20. <!-- Hibernate -->
  21. <dependency>
  22. <groupId>org.hibernate</groupId>
  23. <artifactId>hibernate-core</artifactId>
  24. <version>4.3.10.Final</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.hibernate</groupId>
  28. <artifactId>hibernate-entitymanager</artifactId>
  29. <version>4.3.10.Final</version>
  30. </dependency>
  31. <!-- Servlet API -->
  32. <dependency>
  33. <groupId>javax.servlet</groupId>
  34. <artifactId>servlet-api</artifactId>
  35. <version>2.3</version>
  36. </dependency>
  37. <!-- Spring -->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-tx</artifactId>
  41. <version>2.5.6</version>
  42. </dependency>
  43. <!-- SDO Dependencies -->
  44. <dependency>
  45. <groupId>org.eclipse.persistence</groupId>
  46. <artifactId>commonj.sdo</artifactId>
  47. <version>2.1.1</version>
  48. </dependency>
  49. <!-- JSON Dependencies -->
  50. <dependency>
  51. <groupId>org.json</groupId>
  52. <artifactId>json</artifactId>
  53. <version>20090211</version>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.codehaus.mojo</groupId>
  60. <artifactId>hibernate3-maven-plugin</artifactId>
  61. <version>3.0</version>
  62. <configuration>
  63. <hibernatetool destdir="${project.build.directory}/generated-sources">
  64. <classpath>
  65. <path location="${project.build.directory}/classes" />
  66. </classpath>
  67. <hbm2java>
  68. <ejb3>true</ejb3>
  69. <jdk5>true</jdk5>
  70. </hbm2java>
  71. </hibernatetool>
  72. </configuration>
  73. <dependencies>
  74. <dependency>
  75. <groupId>org.hibernate</groupId>
  76. <artifactId>hibernate-tools</artifactId>
  77. <version>4.3.1.Final</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.javassist</groupId>
  81. <artifactId>javassist</artifactId>
  82. <version>3.29.2-GA</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>javax.xml.bind</groupId>
  86. <artifactId>jaxb-api</artifactId>
  87. <version>2.3.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.glassfish.jaxb</groupId>
  91. <artifactId>jaxb-runtime</artifactId>
  92. <version>2.3.1</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.ibm.db2</groupId>
  96. <artifactId>db2jcc4</artifactId>
  97. <version>11.5.7.0</version>
  98. </dependency>
  99. </dependencies>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>