You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
219 lines
6.4 KiB
219 lines
6.4 KiB
<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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>cn.analysys</groupId> |
|
<artifactId>escheduler</artifactId> |
|
<version>1.1.0-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>escheduler-api</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>cn.analysys</groupId> |
|
<artifactId>escheduler-alert</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.analysys</groupId> |
|
<artifactId>escheduler-server</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>io.netty</groupId> |
|
<artifactId>netty</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>io.netty</groupId> |
|
<artifactId>netty-all</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>com.google</groupId> |
|
<artifactId>netty</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>leveldbjni-all</artifactId> |
|
<groupId>org.fusesource.leveldbjni</groupId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>protobuf-java</artifactId> |
|
<groupId>com.google.protobuf</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<!--springboot--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>log4j-to-slf4j</artifactId> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<!-- use jetty --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-jetty</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.eclipse.jetty.websocket</groupId> |
|
<artifactId>javax-websocket-server-impl</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.eclipse.jetty.websocket</groupId> |
|
<artifactId>websocket-server</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.ow2.asm</groupId> |
|
<artifactId>asm</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-autoconfigure</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-aop</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpcore</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpclient</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-annotations</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-collections</groupId> |
|
<artifactId>commons-collections</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.quartz-scheduler</groupId> |
|
<artifactId>quartz</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>c3p0</artifactId> |
|
<groupId>c3p0</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.quartz-scheduler</groupId> |
|
<artifactId>quartz-jobs</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
<version>2.9.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger-ui</artifactId> |
|
<version>2.9.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.github.xiaoymin</groupId> |
|
<artifactId>swagger-bootstrap-ui</artifactId> |
|
<version>1.9.3</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>cn.analysys</groupId> |
|
<artifactId>escheduler-rpc</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.12</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>2.6</version> |
|
<configuration> |
|
<descriptors> |
|
<descriptor>src/main/assembly/package.xml</descriptor> |
|
</descriptors> |
|
<appendAssemblyId>false</appendAssemblyId> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>make-assembly</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>${java.version}</source> |
|
<target>${java.version}</target> |
|
<encoding>${project.build.sourceEncoding}</encoding> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |