1
0

pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.jetty.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>javax.servlet</groupId>
  20. <artifactId>javax.servlet-api</artifactId>
  21. <version>3.0.1</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>jetty</groupId>
  26. <artifactId>jetty-util</artifactId>
  27. <version>1.0</version>
  28. <scope>system</scope>
  29. <systemPath>${basedir}/CompileLib/jetty-util-9.3.8.v20160314.jar</systemPath>
  30. </dependency>
  31. <dependency>
  32. <groupId>jetty</groupId>
  33. <artifactId>jetty-deploy</artifactId>
  34. <version>1.0</version>
  35. <scope>system</scope>
  36. <systemPath>${basedir}/CompileLib/jetty-deploy-9.3.8.v20160314.jar</systemPath>
  37. </dependency>
  38. <dependency>
  39. <groupId>jetty</groupId>
  40. <artifactId>jetty-servlet</artifactId>
  41. <version>1.0</version>
  42. <scope>system</scope>
  43. <systemPath>${basedir}/CompileLib/jetty-servlet-9.3.8.v20160314.jar</systemPath>
  44. </dependency>
  45. <dependency>
  46. <groupId>jetty</groupId>
  47. <artifactId>jetty-webapp</artifactId>
  48. <version>1.0</version>
  49. <scope>system</scope>
  50. <systemPath>${basedir}/CompileLib/jetty-webapp-9.3.8.v20160314.jar</systemPath>
  51. </dependency>
  52. <dependency>
  53. <groupId>jetty</groupId>
  54. <artifactId>jetty-server</artifactId>
  55. <version>1.0</version>
  56. <scope>system</scope>
  57. <systemPath>${basedir}/CompileLib/jetty-server-9.3.8.v20160314.jar</systemPath>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <configuration>
  65. <source>1.7</source>
  66. <target>1.7</target>
  67. <encoding>UTF-8</encoding>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>