atleon-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.atleon</groupId> <artifactId>atleon-core</artifactId> <version>0.33.4</version> </dependency>
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.atleon</groupId> <artifactId>atleon-parent</artifactId> <version>0.33.4</version> <relativePath>../parent/pom.xml</relativePath> </parent> <artifactId>atleon-core</artifactId> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <dependencies> <!-- Project Compile Dependencies --> <dependency> <groupId>io.atleon</groupId> <artifactId>atleon-util</artifactId> </dependency> <!-- Third Party Compile Dependencies --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> </dependency> <dependency> <groupId>org.reactivestreams</groupId> <artifactId>reactive-streams</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Third Party Optional Dependencies --> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <optional>true</optional> </dependency> <!-- Third Party Test Dependencies --> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> </dependencies> </project>