ceroxe-core-shared
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>top.ceroxe.api</groupId>
<artifactId>ceroxe-core-shared</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>top.ceroxe.api</groupId>
<artifactId>ceroxe-parent</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>ceroxe-core-shared</artifactId>
<version>2.0.0</version>
<packaging>jar</packaging>
<name>CeroxeAPI Core Shared</name>
<description>Shared cross-platform core utilities for CeroxeAPI.</description>
<url>https://github.com/CeroxeAnivie/CeroxeAPI</url>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>17</release>
<compilerArgs combine.self="override"/>
</configuration>
</plugin>
</plugins>
</build>
</project>