pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>gw-cloud-platform-dcproj</artifactId>
  7. <groupId>cn.com.goldenwater</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>gw-cloud-platform-dcproj-tacservice</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.goldenwater</groupId>
  16. <artifactId>gw-cloud-platform-dcproj-tacmodel</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>javax.servlet</groupId>
  21. <artifactId>javax.servlet-api</artifactId>
  22. <scope>compile</scope>
  23. <!-- 打war包时 使用下面的配置 -->
  24. <!-- <scope>provided</scope>-->
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.com.goldenwater</groupId>
  28. <artifactId>gw-cloud-platform-dcproj-model</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.com.goldenwater</groupId>
  34. <artifactId>gw-cloud-core</artifactId>
  35. <version>0.9.0-SNAPSHOT</version>
  36. <scope>compile</scope>
  37. <exclusions>
  38. <exclusion>
  39. <artifactId>slf4j-log4j12</artifactId>
  40. <groupId>org.slf4j</groupId>
  41. </exclusion>
  42. <exclusion>
  43. <artifactId>logback-classic</artifactId>
  44. <groupId>ch.qos.logback</groupId>
  45. </exclusion>
  46. <exclusion>
  47. <artifactId>logback-core</artifactId>
  48. <groupId>ch.qos.logback</groupId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-logging</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. </dependencies>
  57. </project>