foo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.c0d33ngr</groupId> <artifactId>foo</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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> <name>foo</name> <groupId>io.github.c0d33ngr</groupId> <artifactId>foo</artifactId> <packaging>jar</packaging> <description>Mill Sonatype Publish PoC Kotlin with Dependencies</description> <version>1.0.0</version> <url>https://github.com/c0d33ngr/mill-sonatype-publish-poc-kotlin-with-dep</url> <licenses> <license> <name>MIT</name> <url>https://spdx.org/licenses/MIT.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/c0d33ngr/example.git</connection> <developerConnection>scm:git:ssh://git@github.com:c0d33ngr/example.git</developerConnection> <url>https://github.com/c0d33ngr/example</url> </scm> <developers> <developer> <id>c0d33ngr</id> <name>Jeffrey Whewhetu</name> <url>https://c0d33ngr.github.io</url> </developer> </developers> <dependencies> <dependency> <groupId>com.github.ajalt.clikt</groupId> <artifactId>clikt-jvm</artifactId> <version>4.4.0</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-html-jvm</artifactId> <version>0.11.0</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.24</version> </dependency> </dependencies> </project>