pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>commonj</groupId>
  46. <artifactId>commonj-sdo</artifactId>
  47. <version>2.1.0</version>
  48. <scope>system</scope>
  49. <systemPath>${project.basedir}/../SharedLib/commonj-sdo-2.1.0.jar</systemPath>
  50. </dependency>
  51. <!-- JSON Dependencies -->
  52. <dependency>
  53. <groupId>org.json</groupId>
  54. <artifactId>json</artifactId>
  55. <version>20090211</version>
  56. <scope>system</scope>
  57. <systemPath>${project.basedir}/../SharedLib/json-java.jar</systemPath>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.codehaus.mojo</groupId>
  64. <artifactId>hibernate3-maven-plugin</artifactId>
  65. <version>3.0</version>
  66. <configuration>
  67. <hibernatetool destdir="${project.build.directory}/generated-sources">
  68. <classpath>
  69. <path location="${project.build.directory}/classes" />
  70. </classpath>
  71. <hbm2java>
  72. <ejb3>true</ejb3>
  73. <jdk5>true</jdk5>
  74. </hbm2java>
  75. </hibernatetool>
  76. </configuration>
  77. <dependencies>
  78. <dependency>
  79. <groupId>org.hibernate</groupId>
  80. <artifactId>hibernate-tools</artifactId>
  81. <version>4.3.1.Final</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.javassist</groupId>
  85. <artifactId>javassist</artifactId>
  86. <version>3.29.2-GA</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>javax.xml.bind</groupId>
  90. <artifactId>jaxb-api</artifactId>
  91. <version>2.3.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.glassfish.jaxb</groupId>
  95. <artifactId>jaxb-runtime</artifactId>
  96. <version>2.3.1</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.ibm.db2</groupId>
  100. <artifactId>db2jcc4</artifactId>
  101. <version>4.0</version>
  102. <scope>system</scope>
  103. <systemPath>${project.basedir}/../SharedLib/db2jcc4.jar</systemPath>
  104. </dependency>
  105. </dependencies>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>