pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.base</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.creditease.moniter</groupId>
  15. <artifactId>com.creditease.uav.helper</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.creditease.moniter</groupId>
  19. <artifactId>com.creditease.uav.logging</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.netty</groupId>
  23. <artifactId>netty-all</artifactId>
  24. <version>4.1.11.Final</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <configuration>
  32. <source>1.7</source>
  33. <target>1.7</target>
  34. <encoding>UTF-8</encoding>
  35. </configuration>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-jar-plugin</artifactId>
  39. <configuration>
  40. <archive>
  41. <manifestEntries>
  42. <Class-Path>../lib/com.creditease.uav.helper.jar ../lib/com.creditease.uav.fastjson.jar</Class-Path>
  43. </manifestEntries>
  44. </archive>
  45. </configuration>
  46. <executions>
  47. <execution>
  48. <id>boot</id>
  49. <goals>
  50. <goal>jar</goal>
  51. </goals>
  52. <phase>package</phase>
  53. <configuration>
  54. <classifier>boot</classifier>
  55. <includes>
  56. <include>**/com/creditease/mscp/boot/**</include>
  57. </includes>
  58. </configuration>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>