pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>escheduler</artifactId>
  6. <groupId>cn.analysys</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>escheduler-server</artifactId>
  10. <name>escheduler-server</name>
  11. <url>http://maven.apache.org</url>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.analysys</groupId>
  19. <artifactId>escheduler-common</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>io.netty</groupId>
  23. <artifactId>netty</artifactId>
  24. </exclusion>
  25. <exclusion>
  26. <groupId>io.netty</groupId>
  27. <artifactId>netty-all</artifactId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>com.google</groupId>
  31. <artifactId>netty</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <artifactId>log4j-slf4j-impl</artifactId>
  35. <groupId>org.apache.logging.log4j</groupId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.analysys</groupId>
  41. <artifactId>escheduler-dao</artifactId>
  42. <exclusions>
  43. <exclusion>
  44. <artifactId>spring-boot-starter-logging</artifactId>
  45. <groupId>org.springframework.boot</groupId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.analysys</groupId>
  51. <artifactId>escheduler-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.analysys</groupId>
  55. <artifactId>escheduler-rpc</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.curator</groupId>
  59. <artifactId>curator-framework</artifactId>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>org.apache.zookeeper</groupId>
  63. <artifactId>zookeeper</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.curator</groupId>
  69. <artifactId>curator-recipes</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpcore</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>junit</groupId>
  81. <artifactId>junit</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>cn.analysys</groupId>
  86. <artifactId>escheduler-alert</artifactId>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <artifactId>maven-assembly-plugin</artifactId>
  93. <configuration>
  94. <descriptors>
  95. <descriptor>src/main/assembly/package.xml</descriptor>
  96. </descriptors>
  97. <appendAssemblyId>false</appendAssemblyId>
  98. </configuration>
  99. <executions>
  100. <execution>
  101. <id>make-assembly</id>
  102. <phase>package</phase>
  103. <goals>
  104. <goal>single</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <configuration>
  113. <source>${java.version}</source>
  114. <target>${java.version}</target>
  115. <encoding>${project.build.sourceEncoding}</encoding>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>