2023-03-04 16:29:55 +08:00
|
|
|
<?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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.jsowell</groupId>
|
|
|
|
|
<artifactId>jsowell-charger-web</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>jsowell-quartz</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
quartz定时任务
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 定时任务 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jsowell</groupId>
|
|
|
|
|
<artifactId>jsowell-common</artifactId>
|
2023-07-17 17:18:39 +08:00
|
|
|
<version>1.0.0</version>
|
2023-03-04 16:29:55 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- pile -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jsowell</groupId>
|
|
|
|
|
<artifactId>jsowell-pile</artifactId>
|
2023-07-17 17:18:39 +08:00
|
|
|
<version>1.0.0</version>
|
2024-05-28 17:24:04 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>mybatis-spring</artifactId>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jsqlparser</artifactId>
|
|
|
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2023-03-04 16:29:55 +08:00
|
|
|
</dependency>
|
2023-03-25 11:10:15 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jsowell</groupId>
|
2023-03-25 16:01:54 +08:00
|
|
|
<artifactId>jsowell-netty</artifactId>
|
2023-07-17 17:18:39 +08:00
|
|
|
<version>1.0.0</version>
|
2023-07-17 16:44:04 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jsowell</groupId>
|
|
|
|
|
<artifactId>jsowell-thirdparty</artifactId>
|
2023-07-17 17:18:39 +08:00
|
|
|
<version>1.0.0</version>
|
2023-03-25 11:10:15 +08:00
|
|
|
</dependency>
|
2023-03-25 15:47:09 +08:00
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
2024-05-07 15:47:40 +08:00
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
<testExcludes>
|
|
|
|
|
<testExclude>/src/test/**</testExclude>
|
|
|
|
|
</testExcludes>
|
|
|
|
|
<encoding>utf-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|