修改common、core pom结构

This commit is contained in:
付庆吉
2020-12-12 10:48:23 +08:00
parent 82fafc4f85
commit 3e75355dfb
2 changed files with 16 additions and 30 deletions

View File

@ -10,7 +10,7 @@
<relativePath>../mall-ebtp-cloud-parent</relativePath> <relativePath>../mall-ebtp-cloud-parent</relativePath>
</parent> </parent>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.mall.ebtp</groupId>
<artifactId>uboot-common</artifactId> <artifactId>uboot-common</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
<name>uboot-common</name> <name>uboot-common</name>
@ -19,39 +19,32 @@
<dependency> <dependency>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-mvc-starter</artifactId> <artifactId>mall-ebtp-cloud-mvc-starter</artifactId>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-jpa-starter</artifactId> <artifactId>mall-ebtp-cloud-jpa-starter</artifactId>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-eureka-starter</artifactId> <artifactId>mall-ebtp-cloud-eureka-starter</artifactId>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-feign-starter</artifactId> <artifactId>mall-ebtp-cloud-feign-starter</artifactId>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-swagger-starter</artifactId> <artifactId>mall-ebtp-cloud-swagger-starter</artifactId>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-redis-starter</artifactId> <artifactId>mall-ebtp-cloud-redis-starter</artifactId>
<optional>true</optional>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
@ -11,7 +10,7 @@
<relativePath>../mall-ebtp-cloud-parent</relativePath> <relativePath>../mall-ebtp-cloud-parent</relativePath>
</parent> </parent>
<groupId>com.chinaunicom.ebtp</groupId> <groupId>com.chinaunicom.mall.ebtp</groupId>
<artifactId>uboot-core</artifactId> <artifactId>uboot-core</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
<name>uboot-core</name> <name>uboot-core</name>
@ -21,7 +20,8 @@
<dependency> <dependency>
<groupId>com.chinaunicom.mall.ebtp</groupId> <groupId>com.chinaunicom.mall.ebtp</groupId>
<artifactId>uboot-common</artifactId> <artifactId>uboot-common</artifactId>
<version>1.0-SNAPSHOT</version> <version>0.0.1</version>
</dependency> </dependency>
<dependency> <dependency>
@ -60,11 +60,11 @@
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <configuration>
<fork>true</fork> <source>1.8</source>
<addResources>true</addResources> <target>1.8</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
@ -73,13 +73,6 @@
<directory>src/main/resources</directory> <directory>src/main/resources</directory>
<filtering>true</filtering> <filtering>true</filtering>
</resource> </resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.html</include>
</includes>
</resource>
</resources> </resources>
</build> </build>
</project> </project>