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