| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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.datacenter</groupId>
- <artifactId>datacenter</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>datacenter-job</artifactId>
- <packaging>jar</packaging>
- <description>datacenter 定时任务与数据统计</description>
- <dependencies>
- <dependency>
- <groupId>com.datacenter</groupId>
- <artifactId>datacenter-entity</artifactId>
- </dependency>
- <dependency>
- <groupId>com.exchange</groupId>
- <artifactId>common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.exchange</groupId>
- <artifactId>common-log</artifactId>
- </dependency>
- <dependency>
- <groupId>com.exchange</groupId>
- <artifactId>common-mybatisPlus</artifactId>
- </dependency>
- <dependency>
- <groupId>com.exchange</groupId>
- <artifactId>common-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.exchange</groupId>
- <artifactId>common-utils</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.name}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.7.18</version>
- <configuration>
- <mainClass>com.datacenter.DatacenterApplication</mainClass>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <id>repackage</id>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|