pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>ce-datamonitorsystem</artifactId>
  7. <groupId>com.creditease.moniter</groupId>
  8. <version>1.0</version>
  9. <relativePath>../com.creditease.uav.superpom</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>com.creditease.uav.tomcat.plus.core</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.creditease.moniter</groupId>
  16. <artifactId>com.creditease.uav.monitorframework</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>celocaljar</groupId>
  20. <artifactId>tomcat-juli</artifactId>
  21. <version>1.0</version>
  22. <scope>system</scope>
  23. <systemPath>${basedir}/CompileLib/tomcat-juli.jar</systemPath>
  24. </dependency>
  25. <dependency>
  26. <groupId>celocaljar</groupId>
  27. <artifactId>catalina</artifactId>
  28. <version>1.0</version>
  29. <scope>system</scope>
  30. <systemPath>${basedir}/CompileLib/catalina.jar</systemPath>
  31. </dependency>
  32. <dependency>
  33. <groupId>celocaljar</groupId>
  34. <artifactId>tomcat-coyote</artifactId>
  35. <version>1.0</version>
  36. <scope>system</scope>
  37. <systemPath>${basedir}/CompileLib/tomcat-coyote.jar</systemPath>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax.servlet</groupId>
  41. <artifactId>javax.servlet-api</artifactId>
  42. <version>3.0.1</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.tomcat.embed</groupId>
  47. <artifactId>tomcat-embed-core</artifactId>
  48. <version>8.5.0</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. </dependencies>
  52. </project>