example-jvm-maven-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.block</groupId> <artifactId>example-jvm-maven-api</artifactId> <version>0.1.0-alpha-1</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/maven-v4_0_0.xsd"> <!-- Parent --> <parent> <groupId>xyz.block</groupId> <artifactId>example-jvm-maven-parent</artifactId> <version>0.1.0-alpha-1</version> <relativePath>../pom.xml</relativePath> </parent> <!-- Model Version --> <modelVersion>4.0.0</modelVersion> <!-- Artifact Configuration --> <artifactId>example-jvm-maven-api</artifactId> <name>JVM Maven Example API</name> <description>API for Java/Kotlin Example</description> <!-- Properties --> <properties> <!-- Versioning --> </properties> <!-- Dependencies --> <dependencies> </dependencies> <!-- Build Configuration --> <build> </build> </project>