200 lines
7.8 KiB
XML
200 lines
7.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 https://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>2.2.6.RELEASE</version>
|
||
|
</parent>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>plmservice</artifactId>
|
||
|
<version>2.0</version>
|
||
|
<name>plm-service-http</name>
|
||
|
<description>Demo project for Spring Boot depend on http</description>
|
||
|
|
||
|
<packaging>pom</packaging>
|
||
|
<!--模块声明-->
|
||
|
<modules>
|
||
|
<module>core</module>
|
||
|
<module>config</module>
|
||
|
<module>commons</module>
|
||
|
<module>enhancement</module>
|
||
|
<module>redis</module>
|
||
|
<module>mybatis</module>
|
||
|
<module>sso</module>
|
||
|
<!-- <module>integration</module>-->
|
||
|
<!-- <module>rabbitmq</module>-->
|
||
|
<!-- <module>task</module>-->
|
||
|
</modules>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<java.version>1.8</java.version>
|
||
|
<spring.boot.version>2.2.6.RELEASE</spring.boot.version>
|
||
|
<hutool.version>5.4.1</hutool.version>
|
||
|
<guava.version>28.1-jre</guava.version>
|
||
|
<config.version>2.0</config.version>
|
||
|
<commons.version>2.1</commons.version>
|
||
|
<enhancement.version>2.1</enhancement.version>
|
||
|
<sso.version>0.11</sso.version>
|
||
|
<integration.version>0.10</integration.version>
|
||
|
<redis.version>2.0</redis.version>
|
||
|
<rabbitmq.version>2.0</rabbitmq.version>
|
||
|
<mybatis.version>2.0</mybatis.version>
|
||
|
<task.version>2.0</task.version>
|
||
|
<commons.lang3.version>3.8.1</commons.lang3.version>
|
||
|
<ojdbc6.version>11.2.0.3</ojdbc6.version>
|
||
|
<!-- <microsoft.sqlserver.version>6.0.8112</microsoft.sqlserver.version>-->
|
||
|
<microsoft.sqlserver.version>8.2.2.jre8</microsoft.sqlserver.version>
|
||
|
<jakarta-json.version>2.0.1</jakarta-json.version>
|
||
|
<elasticsearch.version>7.16.2</elasticsearch.version>
|
||
|
<elasticsearch.version>7.16.2</elasticsearch.version>
|
||
|
<spring.boot.admin.version>2.2.4</spring.boot.admin.version>
|
||
|
<spring.boot.actuator.version>2.2.5.RELEASE</spring.boot.actuator.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>de.codecentric</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-admin-starter-client</artifactId> -->
|
||
|
<!-- <version>${spring.boot.admin.version}</version> -->
|
||
|
<!-- </dependency> -->
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-actuator</artifactId> -->
|
||
|
<!-- <version>${spring.boot.actuator.version}</version> -->
|
||
|
<!-- </dependency> -->
|
||
|
<dependency>
|
||
|
<groupId>com.microsoft.sqlserver</groupId>
|
||
|
<artifactId>mssql-jdbc</artifactId>
|
||
|
<version>${microsoft.sqlserver.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.oracle</groupId>
|
||
|
<artifactId>ojdbc6</artifactId>
|
||
|
<version>${ojdbc6.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>${commons.lang3.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
<version>${spring.boot.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
<!-- hutool工具类 -->
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>${hutool.version}</version>
|
||
|
</dependency>
|
||
|
<!-- guava工具类 -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<version>${guava.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>config</artifactId>
|
||
|
<version>${config.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>commons</artifactId>
|
||
|
<version>${commons.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>redis</artifactId>
|
||
|
<version>${redis.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>enhancement</artifactId>
|
||
|
<version>${enhancement.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>rabbitmq</artifactId>
|
||
|
<version>${rabbitmq.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>mybatis</artifactId>
|
||
|
<version>${mybatis.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>task</artifactId>
|
||
|
<version>${task.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.centricsoftware</groupId>
|
||
|
<artifactId>sso</artifactId>
|
||
|
<version>${sso.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.aliyun.oss</groupId>
|
||
|
<artifactId>aliyun-sdk-oss</artifactId>
|
||
|
<version>3.13.0</version>
|
||
|
</dependency>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>com.centricsoftware</groupId>-->
|
||
|
<!-- <artifactId>integration</artifactId>-->
|
||
|
<!-- <version>${integration.version}</version>-->
|
||
|
<!-- </dependency>-->
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>dev</id>
|
||
|
<properties>
|
||
|
<profileActive>dev</profileActive>
|
||
|
</properties>
|
||
|
<activation>
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>test</id>
|
||
|
<properties>
|
||
|
<profileActive>test</profileActive>
|
||
|
</properties>
|
||
|
<activation>
|
||
|
<activeByDefault>false</activeByDefault>
|
||
|
</activation>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>prod</id>
|
||
|
<properties>
|
||
|
<profileActive>prod</profileActive>
|
||
|
</properties>
|
||
|
<activation>
|
||
|
<activeByDefault>false</activeByDefault>
|
||
|
</activation>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>central</id>
|
||
|
<url>https://maven.aliyun.com/repository/public</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<pluginRepositories>
|
||
|
<pluginRepository>
|
||
|
<id>central</id>
|
||
|
<url>https://maven.aliyun.com/repository/public</url>
|
||
|
</pluginRepository>
|
||
|
</pluginRepositories>
|
||
|
|
||
|
</project>
|