pom.xml 3.5 KB

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