pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.xt.js.gkaq</groupId>
  5. <artifactId>gkaq-dwxx</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <dependencies>
  8. <dependency>
  9. <groupId>org.springframework</groupId>
  10. <artifactId>spring-context</artifactId>
  11. </dependency>
  12. <dependency>
  13. <groupId>javax.servlet</groupId>
  14. <artifactId>servlet-api</artifactId>
  15. <scope>provided</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.apache.shiro</groupId>
  19. <artifactId>shiro-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.shiro</groupId>
  23. <artifactId>shiro-spring</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.shiro</groupId>
  27. <artifactId>shiro-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.yuanxd.tools</groupId>
  31. <artifactId>x-tools-utils</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fasterxml.jackson.core</groupId>
  35. <artifactId>jackson-core</artifactId>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.core</groupId>
  40. <artifactId>jackson-databind</artifactId>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.xt.js.gkaq</groupId>
  45. <artifactId>gkaq-common</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>com.xt.js.gkaq</groupId>
  52. <artifactId>gkaq-bom</artifactId>
  53. <version>0.0.1-SNAPSHOT</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. <distributionManagement>
  60. <repository>
  61. <id>xt-repository</id>
  62. <name>xt Repository</name>
  63. <url>${deploy.url}</url>
  64. </repository>
  65. <snapshotRepository>
  66. <id>xt-repository-snapshots</id>
  67. <name>xt Repository Snapshots</name>
  68. <url>${deploy.snapshots.url}</url>
  69. </snapshotRepository>
  70. </distributionManagement>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-surefire-plugin</artifactId>
  76. <configuration>
  77. <skipTests>true</skipTests>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-source-plugin</artifactId>
  83. <executions>
  84. <execution>
  85. <id>attach-sources</id>
  86. <goals>
  87. <goal>jar</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <artifactId>maven-war-plugin</artifactId>
  94. </plugin>
  95. <!-- compiler插件, 设定JDK版本 -->
  96. <plugin>
  97. <groupId>org.mybatis.generator</groupId>
  98. <artifactId>mybatis-generator-maven-plugin</artifactId>
  99. <version>1.3.2</version>
  100. <dependencies>
  101. <dependency>
  102. <groupId>com.oracle</groupId>
  103. <artifactId>ojdbc6</artifactId>
  104. <version>11.2.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.h2database</groupId>
  108. <artifactId>h2</artifactId>
  109. <version>1.4.192</version>
  110. </dependency>
  111. </dependencies>
  112. <configuration>
  113. <configurationFile>${basedir}\src\main\resources\generatorConfig.xml</configurationFile>
  114. <overwrite>true</overwrite>
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. <properties>
  120. <project.build.sourceEncoding>GBK</project.build.sourceEncoding>
  121. </properties>
  122. </project>