summaryrefslogtreecommitdiff
path: root/groot-bootstrap
diff options
context:
space:
mode:
authordoufenghu <[email protected]>2024-03-06 20:26:08 +0800
committerdoufenghu <[email protected]>2024-03-06 20:26:08 +0800
commit80e5a4756ca97a52709922956b586fda11377bc5 (patch)
tree8c4cdd1dc156ca082fe1c9c9450014d496e6874f /groot-bootstrap
parentf3ecbcc30d01c70bb96634c36c4d1ca7f1e0e869 (diff)
[Feature][Test] Add TestContainner lib for end-to-end testing. Add test-common and test-e2e-base submodules. Support Inline to Print test in Flink13 Container.
Diffstat (limited to 'groot-bootstrap')
-rw-r--r--groot-bootstrap/pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/groot-bootstrap/pom.xml b/groot-bootstrap/pom.xml
index 6f6b5f6..62c2dc8 100644
--- a/groot-bootstrap/pom.xml
+++ b/groot-bootstrap/pom.xml
@@ -156,6 +156,29 @@
<build>
<finalName>${project.artifactId}</finalName>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-starter-logging-package-for-e2e</id>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <excludeTransitive>false</excludeTransitive>
+ <includeGroupIds>org.slf4j,org.apache.logging.log4j</includeGroupIds>
+ <includeArtifactIds>slf4j-api,jcl-over-slf4j,log4j-slf4j-impl,log4j-api,log4j-core</includeArtifactIds>
+ <outputDirectory>${project.build.directory}/logging-e2e</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
</project>