summaryrefslogtreecommitdiff
path: root/xxl-job-core/pom.xml
diff options
context:
space:
mode:
authordoufenghu <[email protected]>2020-02-21 17:30:08 +0800
committerdoufenghu <[email protected]>2020-02-21 17:30:08 +0800
commit5350840a9f4c76fbb6c5ec4b3bdf8c75dcc9ccf3 (patch)
treebb4cfd98a85e10c6a43340bf8885463a6e5802c0 /xxl-job-core/pom.xml
parentc71da1bd2069ae9f608bc214aae7d8ea3b2f97c0 (diff)
forks xxl-jobHEADmaster
Diffstat (limited to 'xxl-job-core/pom.xml')
-rw-r--r--xxl-job-core/pom.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/xxl-job-core/pom.xml b/xxl-job-core/pom.xml
new file mode 100644
index 0000000..417f0fe
--- /dev/null
+++ b/xxl-job-core/pom.xml
@@ -0,0 +1,50 @@
+<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>com.xuxueli</groupId>
+ <artifactId>xxl-job</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>xxl-job-core</artifactId>
+ <packaging>jar</packaging>
+
+ <name>${project.artifactId}</name>
+ <description>A distributed task scheduling framework.</description>
+ <url>https://www.xuxueli.com/</url>
+
+ <dependencies>
+
+ <!-- xxl-rpc-core -->
+ <dependency>
+ <groupId>com.xuxueli</groupId>
+ <artifactId>xxl-rpc-core</artifactId>
+ <version>${xxl-rpc.version}</version>
+ </dependency>
+
+ <!-- groovy-all -->
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy</artifactId>
+ <version>${groovy.version}</version>
+ </dependency>
+
+ <!-- spring-context -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context</artifactId>
+ <version>${spring.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- junit -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${junit.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+</project> \ No newline at end of file