76 lines
2.4 KiB
XML
76 lines
2.4 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">
|
||
|
|
<parent>
|
||
|
|
<groupId>com.codvision</groupId>
|
||
|
|
<artifactId>cvbp</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>cvbp-basic-info</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<description>基础信息</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.codvision</groupId>
|
||
|
|
<artifactId>cvbp-auth-center</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.persistence</groupId>
|
||
|
|
<artifactId>persistence-api</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<profiles>
|
||
|
|
<profile>
|
||
|
|
<id>dev</id>
|
||
|
|
<properties>
|
||
|
|
<profiles.active>dev</profiles.active>
|
||
|
|
</properties>
|
||
|
|
<activation>
|
||
|
|
<!-- 默认环境 -->
|
||
|
|
<activeByDefault>true</activeByDefault>
|
||
|
|
</activation>
|
||
|
|
</profile>
|
||
|
|
<profile>
|
||
|
|
<id>prd</id>
|
||
|
|
<properties>
|
||
|
|
<profiles.active>prd</profiles.active>
|
||
|
|
</properties>
|
||
|
|
</profile>
|
||
|
|
</profiles>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
<configuration>
|
||
|
|
<classifier>exec</classifier>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|