pom.xml 3.0 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. <!-- <parent> -->
  5. <groupId>com.dgtis</groupId>
  6. <!-- <artifactId>CRM</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent> -->
  9. <artifactId>dgt-common-sso</artifactId>
  10. <!-- <groupId>dgt-common-sso</groupId> -->
  11. <name>dgt-common-sso</name>
  12. <packaging>jar</packaging>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <url>http://maven.apache.org</url>
  15. <properties>
  16. <!-- slf4j版本号 -->
  17. <slf4j.version>1.7.7</slf4j.version>
  18. <log4j.version>1.2.12</log4j.version>
  19. <servlet.version>3.0.1</servlet.version>
  20. <commons-collections-version>3.1</commons-collections-version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>javax.servlet</groupId>
  25. <artifactId>javax.servlet-api</artifactId>
  26. <version>${servlet.version}</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <!-- 日志文件管理包 -->
  30. <!-- log start -->
  31. <dependency>
  32. <groupId>log4j</groupId>
  33. <artifactId>log4j</artifactId>
  34. <version>${log4j.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-api</artifactId>
  39. <version>${slf4j.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.slf4j</groupId>
  43. <artifactId>slf4j-log4j12</artifactId>
  44. <version>${slf4j.version}</version>
  45. </dependency>
  46. <!-- log end -->
  47. <!-- commons utils -->
  48. <dependency>
  49. <groupId>commons-collections</groupId>
  50. <artifactId>commons-collections</artifactId>
  51. <version>${commons-collections-version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-beanutils</groupId>
  55. <artifactId>commons-beanutils</artifactId>
  56. <version>1.8.3</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. <version>3.3.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-io</groupId>
  65. <artifactId>commons-io</artifactId>
  66. <version>2.4</version>
  67. </dependency>
  68. <!-- commons utils -->
  69. <dependency>
  70. <groupId>com.google.code.gson</groupId>
  71. <artifactId>gson</artifactId>
  72. <version>2.2.4</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-pool2</artifactId>
  77. <version>2.4.2</version>
  78. <type>jar</type>
  79. <scope>compile</scope>
  80. </dependency>
  81. <!-- redis client start -->
  82. <dependency>
  83. <groupId>redis.clients</groupId>
  84. <artifactId>jedis</artifactId>
  85. <version>2.9.0</version>
  86. </dependency>
  87. <!-- redis client end -->
  88. </dependencies>
  89. <build>
  90. <finalName>dgt-common-sso</finalName>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>2.3.2</version>
  96. <configuration>
  97. <source>1.7</source>
  98. <target>1.7</target>
  99. <encoding>UTF-8</encoding>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>