106 lines
3.4 KiB
XML
106 lines
3.4 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>dev.zhub</groupId>
|
|
<artifactId>zim</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Archetype - dev.zhub.zim</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>maven-release</id>
|
|
<name>maven-nexus</name>
|
|
<url>https://nexus.1216.top/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.redkale</groupId>
|
|
<artifactId>redkale</artifactId>
|
|
<version>2.2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.redkalex</groupId>
|
|
<artifactId>redkale-plugins</artifactId>
|
|
<version>2.2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<version>8.2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>42.7.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.tccn</groupId>
|
|
<artifactId>zhub-client-redkale</artifactId>
|
|
<version>x.22.0</version>
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
<groupId>org.mongodb</groupId>
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
<version>3.12.14</version>
|
|
</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.26</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
<groupId>com.jfinal</groupId>
|
|
<artifactId>enjoy</artifactId>
|
|
<version>4.8.dev</version>
|
|
</dependency>-->
|
|
|
|
<!--<dependency>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
<artifactId>jsqlparser</artifactId>
|
|
<version>4.9</version>
|
|
</dependency>-->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<finalName>lib/zim</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
<executions>
|
|
<!-- 依赖 jar 拷贝 -->
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|