<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>psdc</artifactId> <groupId>com.psdc</groupId> <version>0.0.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>psdc-business</artifactId> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.psdc</groupId> <artifactId>psdc-common</artifactId> </dependency> <dependency> <groupId>com.psdc</groupId> <artifactId>psdc-framework</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>com.psdc</groupId> <artifactId>psdc-quartz</artifactId> <version>0.0.1</version> </dependency> <!-- 定时任务 --> <!-- <dependency>--> <!-- <groupId>org.quartz-scheduler</groupId>--> <!-- <artifactId>quartz</artifactId>--> <!-- <exclusions>--> <!-- <exclusion>--> <!-- <groupId>com.mchange</groupId>--> <!-- <artifactId>c3p0</artifactId>--> <!-- </exclusion>--> <!-- </exclusions>--> <!-- </dependency>--> </dependencies> </project>