pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jeesite</groupId>
  7. <artifactId>jeesite-parent</artifactId>
  8. <version>4.4.1-SNAPSHOT</version>
  9. <relativePath>../../parent/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>jeesite-module-core</artifactId>
  12. <packaging>jar</packaging>
  13. <name>JeeSite Module Core</name>
  14. <url>http://jeesite.com</url>
  15. <inceptionYear>2013-Now</inceptionYear>
  16. <dependencies>
  17. <!-- MySQL -->
  18. <dependency>
  19. <groupId>mysql</groupId>
  20. <artifactId>mysql-connector-java</artifactId>
  21. <scope>runtime</scope>
  22. </dependency>
  23. <!-- Oracle 11g -->
  24. <dependency>
  25. <groupId>com.oracle</groupId>
  26. <artifactId>ojdbc6</artifactId>
  27. <version>11.2.0.3</version>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <!-- Oracle 12c
  31. <dependency>
  32. <groupId>com.oracle.ojdbc</groupId>
  33. <artifactId>ojdbc8</artifactId>
  34. <scope>runtime</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.oracle.ojdbc</groupId>
  38. <artifactId>orai18n</artifactId>
  39. <scope>runtime</scope>
  40. </dependency> -->
  41. <!-- SqlServer 2008 -->
  42. <dependency>
  43. <groupId>net.sourceforge.jtds</groupId>
  44. <artifactId>jtds</artifactId>
  45. <scope>runtime</scope>
  46. </dependency>
  47. <!-- SqlServer 2012
  48. <dependency>
  49. <groupId>com.microsoft.sqlserver</groupId>
  50. <artifactId>mssql-jdbc</artifactId>
  51. <scope>runtime</scope>
  52. </dependency> -->
  53. <!-- PostgreSQL -->
  54. <dependency>
  55. <groupId>org.postgresql</groupId>
  56. <artifactId>postgresql</artifactId>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <!-- H2 DB
  60. <dependency>
  61. <groupId>com.h2database</groupId>
  62. <artifactId>h2</artifactId>
  63. <scope>runtime</scope>
  64. </dependency> -->
  65. <!-- Common -->
  66. <dependency>
  67. <groupId>com.jeesite</groupId>
  68. <artifactId>jeesite-common</artifactId>
  69. <version>${project.parent.version}</version>
  70. </dependency>
  71. <!-- Framework -->
  72. <dependency>
  73. <groupId>com.jeesite</groupId>
  74. <artifactId>jeesite-framework</artifactId>
  75. <version>${project.parent.version}</version>
  76. </dependency>
  77. <!--<dependency>
  78. <groupId>com.jeesite</groupId>
  79. <artifactId>jeesite-module-sso</artifactId>
  80. <version>4.4.1-SNAPSHOT</version>
  81. <scope>compile</scope>
  82. </dependency>-->
  83. <!-- Core Extend
  84. <dependency>
  85. <groupId>com.jeesite</groupId>
  86. <artifactId>jeesite-module-core-extend</artifactId>
  87. <version>${project.parent.version}</version>
  88. </dependency> -->
  89. </dependencies>
  90. <developers>
  91. <developer>
  92. <id>thinkgem</id>
  93. <name>WangZhen</name>
  94. <email>thinkgem at 163.com</email>
  95. <roles><role>Project lead</role></roles>
  96. <timezone>+8</timezone>
  97. </developer>
  98. </developers>
  99. <organization>
  100. <name>JeeSite</name>
  101. <url>http://jeesite.com</url>
  102. </organization>
  103. </project>