Skip to content

Commit

Permalink
feature: 将admin服务和project服务聚合,方便部署
Browse files Browse the repository at this point in the history
  • Loading branch information
shizifeng committed Mar 24, 2024
1 parent 85e46aa commit 20cc03c
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions aggregation/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?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.linshy.saas</groupId>
<artifactId>saas-all</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>saas-aggregation</artifactId>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>saas-admin</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>saas-project</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 20cc03c

Please sign in to comment.