159 lines
5.6 KiB
XML
159 lines
5.6 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>3.2.12</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun</artifactId>
|
|
<version>1.0.0</version>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>xingyun-core</module>
|
|
<module>xingyun-server</module>
|
|
<module>xingyun-basedata</module>
|
|
<module>xingyun-sc</module>
|
|
<module>xingyun-chart</module>
|
|
<module>xingyun-settle</module>
|
|
<module>xingyun-comp</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<java.version>17</java.version>
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
|
<lombok.version>1.18.32</lombok.version>
|
|
<xingyun.version>1.0.0</xingyun.version>
|
|
<framework.version>1.0.0</framework.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>framework</artifactId>
|
|
<version>${framework.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>mq-starter</artifactId>
|
|
<version>${framework.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun-basedata</artifactId>
|
|
<version>${xingyun.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun-comp</artifactId>
|
|
<version>${xingyun.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun-sc</artifactId>
|
|
<version>${xingyun.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun-chart</artifactId>
|
|
<version>${xingyun.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun-settle</artifactId>
|
|
<version>${xingyun.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.lframework</groupId>
|
|
<artifactId>xingyun-core</artifactId>
|
|
<version>${xingyun.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>3.5.7</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
<version>2.5.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<release>${java.version}</release>
|
|
<encoding>UTF-8</encoding>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<profiles-active>dev</profiles-active>
|
|
<discovery-server>127.0.0.1:10000</discovery-server>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<profiles-active>test</profiles-active>
|
|
<discovery-server>127.0.0.1:10000</discovery-server>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>prod</id>
|
|
<properties>
|
|
<profiles-active>prod</profiles-active>
|
|
<discovery-server>127.0.0.1:10000</discovery-server>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project> |