From 2c43f24c1a778b48ac20b07e17f5da38136cafb4 Mon Sep 17 00:00:00 2001 From: kimi42345 <kimi42345@outlook.com> Date: 星期三, 11 三月 2020 13:28:10 +0800 Subject: [PATCH] no message --- pom.xml | 53 ++++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 46 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 31c3fc3..f13b308 100644 --- a/pom.xml +++ b/pom.xml @@ -94,8 +94,8 @@ <dependency> <groupId>com.xuxueli</groupId> - <artifactId>xxl-job-core</artifactId> - <version>2.1.0</version> + <artifactId>xxl-rpc-core</artifactId> + <version>1.5.0</version> </dependency> <dependency> <groupId>mysql</groupId> @@ -144,11 +144,7 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>com.xuxueli</groupId> - <artifactId>xxl-job-core</artifactId> - <version>2.1.2</version> - </dependency> + <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-spring-boot-starter-actuator</artifactId> @@ -407,19 +403,62 @@ <version>3.7.2</version> </dependency> + <dependency> + <groupId>com.xuxueli</groupId> + <artifactId>xxl-job-core</artifactId> + <version>2.2.0</version> + <scope>system</scope> + <systemPath>${project.basedir}/src/main/resources/lib/xxl-job-core-2.2.0-SNAPSHOT.jar</systemPath> + </dependency> </dependencies> <build> + <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <executable>true</executable> + <includeSystemScope>true</includeSystemScope> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.6.0</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + <encoding>UTF-8</encoding> + <!--鏍规嵁浣犳妸lib鏀剧殑浣嶇疆--> + <compilerArguments> + <extdirs>${project.basedir}/src/main/resources/lib</extdirs> + </compilerArguments> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.10</version> + <executions> + <execution> + <id>copy-dependencies</id> + <phase>compile</phase> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <outputDirectory>${project.basedir}/src/main/resources/lib</outputDirectory> + <includeScope>system</includeScope> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> -- Gitblit v1.8.0