Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #275 from sofastack/youji-dev
Browse files Browse the repository at this point in the history
update slimming
  • Loading branch information
lvjing2 authored Nov 9, 2023
2 parents 4d0fb9e + 5d0221a commit 52aff88
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 17 deletions.
1 change: 1 addition & 0 deletions samples/springboot-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<module>service/sample-service-base</module>
<module>service/sample-service-biz</module>
<module>service/sample-service-biz2</module>
<module>slimming/log4j2</module>
<module>msg/kafka/base</module>
<module>msg/kafka/biz1</module>
<module>msg/kafka/biz2</module>
Expand Down
11 changes: 4 additions & 7 deletions samples/springboot-samples/slimming/log4j2/base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@
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>com.alipay.sofa</groupId>
<artifactId>springboot-samples</artifactId>
<groupId>com.alipay.sofa.slimming.log4j2</groupId>
<artifactId>slimming-log4j2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath> <!-- lookup parent from repository -->
<relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
</parent>
<groupId>com.alipay.sofa.logging.log4j2</groupId>
<artifactId>base-log4j2</artifactId>
<artifactId>base-slimming-log4j2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>base-log4j2</name>
<description>logging base for log4j2</description>

<dependencies>
<dependency>
Expand Down
14 changes: 4 additions & 10 deletions samples/springboot-samples/slimming/log4j2/biz1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@
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>com.alipay.sofa</groupId>
<artifactId>springboot-samples</artifactId>
<groupId>com.alipay.sofa.slimming.log4j2</groupId>
<artifactId>slimming-log4j2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath> <!-- lookup parent from repository -->
<relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
</parent>
<groupId>com.alipay.sofa.logging.log4j2</groupId>
<artifactId>biz1-log4j2</artifactId>
<artifactId>biz1-slimming-log4j2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>biz1-log4j2</name>
<description>biz1</description>

<dependencies>
<dependency>
Expand Down Expand Up @@ -73,9 +70,6 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<finalName>springboot-application</finalName>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
20 changes: 20 additions & 0 deletions samples/springboot-samples/slimming/log4j2/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?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>com.alipay.sofa</groupId>
<artifactId>springboot-samples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <!-- lookup parent from repository -->
</parent>
<groupId>com.alipay.sofa.slimming.log4j2</groupId>
<artifactId>slimming-log4j2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>base</module>
<module>biz1</module>
</modules>
</project>

0 comments on commit 52aff88

Please sign in to comment.