joylive-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jd.live</groupId> <artifactId>joylive-test</artifactId> <version>1.8.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jd.live</groupId> <artifactId>joylive-agent</artifactId> <version>1.8.0</version> </parent> <groupId>com.jd.live</groupId> <artifactId>joylive-test</artifactId> <version>1.8.0</version> <packaging>pom</packaging> <name>joylive-test</name> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>joylive-test-extension</module> <module>joylive-test-inject</module> <module>joylive-test-bytebuddy</module> </modules> <dependencies> <dependency> <groupId>com.jd.live</groupId> <artifactId>joylive-core-framework</artifactId> </dependency> <dependency> <groupId>com.jd.live</groupId> <artifactId>joylive-governance-api</artifactId> </dependency> <dependency> <groupId>com.jd.live</groupId> <artifactId>joylive-eventbus-jbus</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <configuration> <skipPublishing>true</skipPublishing> <excludeArtifacts> <exclude>joylive-test-extension</exclude> <exclude>joylive-test-inject</exclude> <exclude>joylive-test-bytebuddy</exclude> </excludeArtifacts> </configuration> </plugin> </plugins> </build> </project>