108 lines
3.8 KiB
XML
108 lines
3.8 KiB
XML
<?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>
|
|
<groupId>cn.axzo.infra</groupId>
|
|
<artifactId>axzo-parent</artifactId>
|
|
<version>2.4.13.5</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>cn.axzo.foundation</groupId>
|
|
<artifactId>axzo-lib-box</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<axzo-bom.version>2.0.0-SNAPSHOT</axzo-bom.version>
|
|
<axzo-dependencies.version>2.0.0-SNAPSHOT</axzo-dependencies.version>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>dao-support-lib</module>
|
|
<module>common-lib</module>
|
|
<module>unittest-support-lib</module>
|
|
<module>web-support-lib</module>
|
|
<module>gateway-support-lib</module>
|
|
<module>event-support-lib</module>
|
|
<module>redis-support-lib</module>
|
|
<module>excel-support-lib</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.axzo.infra</groupId>
|
|
<artifactId>axzo-bom</artifactId>
|
|
<version>${axzo-bom.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.axzo.infra</groupId>
|
|
<artifactId>axzo-dependencies</artifactId>
|
|
<version>${axzo-dependencies.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>2.3.232</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>axzo</id>
|
|
<name>axzo repository</name>
|
|
<url>https://nexus.axzo.cn/repository/axzo/</url>
|
|
</repository>
|
|
</repositories>
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
<!-- </plugin>-->
|
|
<!-- <!– Source attach plugin –>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-source-plugin</artifactId>-->
|
|
<!-- <version>3.1.0</version>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>attach-sources</id>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>jar</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
</project> |