|
@@ -7,77 +7,56 @@
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
<artifactId>xxl-job-admin</artifactId>
|
|
|
- <packaging>war</packaging>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
- <!-- springframe start -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-webmvc</artifactId>
|
|
|
- <version>${spring.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-context-support</artifactId>
|
|
|
- <version>${spring.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-orm</artifactId>
|
|
|
- <version>${spring.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-test</artifactId>
|
|
|
- <version>${spring.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- springframe end -->
|
|
|
- <!-- aspectjweaver (support spring aop) -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.aspectj</groupId>
|
|
|
- <artifactId>aspectjweaver</artifactId>
|
|
|
- <version>${aspectjweaver.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- jackson (support spring json) -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
- <version>${jackson.version}</version>
|
|
|
- </dependency>
|
|
|
|
|
|
- <!-- servlet -->
|
|
|
+ <!-- starter-web:spring-webmvc + autoconfigure + logback + yaml + tomcat -->
|
|
|
<dependency>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
- <artifactId>javax.servlet-api</artifactId>
|
|
|
- <version>${javax.servlet-api.version}</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
+ <!-- starter-test:junit + spring-test + mockito -->
|
|
|
<dependency>
|
|
|
- <groupId>javax.servlet.jsp</groupId>
|
|
|
- <artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
- <version>${javax.servlet.jsp-api.version}</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- freemarker -->
|
|
|
+ <!-- freemarker-starter -->
|
|
|
<dependency>
|
|
|
- <groupId>org.freemarker</groupId>
|
|
|
- <artifactId>freemarker</artifactId>
|
|
|
- <version>${freemarker.version}</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- slf4j -->
|
|
|
+
|
|
|
+ <!-- mybatis-starter:mybatis + mybatis-spring + tomcat-jdbc(default) -->
|
|
|
<dependency>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
|
- <version>${slf4j-api.version}</version>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>${mybatis-spring-boot-starter.version}</version>
|
|
|
</dependency>
|
|
|
- <!-- junit -->
|
|
|
+
|
|
|
+ <!-- mysql -->
|
|
|
<dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>${junit.version}</version>
|
|
|
- <scope>test</scope>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql-connector-java.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
+
|
|
|
<!-- commons-collections4 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
@@ -97,36 +76,6 @@
|
|
|
<version>${commons-email.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- c3p0 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.mchange</groupId>
|
|
|
- <artifactId>c3p0</artifactId>
|
|
|
- <version>${c3p0.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- mysql-connector -->
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>${mysql-connector-java.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- mybatis-spring -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
- <artifactId>mybatis-spring</artifactId>
|
|
|
- <version>${mybatis-spring.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
- <artifactId>mybatis</artifactId>
|
|
|
- <version>${mybatis.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- httpclient -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.httpcomponents</groupId>
|
|
|
- <artifactId>httpclient</artifactId>
|
|
|
- <version>${httpclient.version}</version>
|
|
|
- </dependency>
|
|
|
|
|
|
<!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
|
|
|
<dependency>
|
|
@@ -135,6 +84,7 @@
|
|
|
<version>${quartz.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
+
|
|
|
<!-- xxl-job-core -->
|
|
|
<dependency>
|
|
|
<groupId>com.xuxueli</groupId>
|