pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ce-datamonitorsystem</artifactId>
  6. <groupId>com.creditease.moniter</groupId>
  7. <version>1.0</version>
  8. <relativePath>../com.creditease.uav.superpom</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>com.creditease.uav.monitorframework.apm</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.creditease.moniter</groupId>
  15. <artifactId>com.creditease.uav.monitorframework</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.creditease.moniter</groupId>
  20. <artifactId>com.creditease.uav.helper</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.creditease.moniter</groupId>
  24. <artifactId>com.creditease.uav.logging</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.creditease.moniter</groupId>
  28. <artifactId>com.creditease.uav.monitorframework.dproxy</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>javax.servlet</groupId>
  32. <artifactId>javax.servlet-api</artifactId>
  33. <version>3.0.1</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>eu.bitwalker</groupId>
  38. <artifactId>UserAgentUtils</artifactId>
  39. <version>1.20</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-dependency-plugin</artifactId>
  47. <executions>
  48. <execution>
  49. <id>copy-dependencies</id>
  50. <phase>package</phase>
  51. <goals>
  52. <goal>copy-dependencies</goal>
  53. </goals>
  54. <configuration>
  55. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  56. <includeScope>runtime</includeScope>
  57. </configuration>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>