xxl-job-executor-sample-spring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.githup.liuyanggithup</groupId> <artifactId>xxl-job-executor-sample-spring</artifactId> <version>1.2.1</version> </dependency>
<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.githup.liuyanggithup</groupId> <artifactId>xxl-job-executor-samples</artifactId> <version>1.2.1</version> </parent> <artifactId>xxl-job-executor-sample-spring</artifactId> <packaging>war</packaging> <name>${project.artifactId}</name> <description>Executor project for spring boot.</description> <url>https://github.com/liuyanggithup/xxl-job-plus/</url> <dependencies> <!-- spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <!-- slf4j --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j-api.version}</version> </dependency> <!-- xxl-job-core --> <dependency> <groupId>com.githup.liuyanggithup</groupId> <artifactId>xxl-job-core</artifactId> <version>${project.parent.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <archiveClasses>false</archiveClasses> </configuration> </plugin> </plugins> </build> </project>