maven-hello-world
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.chensoul</groupId> <artifactId>maven-hello-world</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 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.chensoul</groupId> <artifactId>chensoul-parent</artifactId> <version>1.1.4</version> <relativePath></relativePath> </parent> <groupId>com.chensoul</groupId> <artifactId>maven-hello-world</artifactId> <version>1.0.0</version> <name>${project.artifactId}</name> <description>A lightweight Maven hello world</description> <url>https://chensoul.github.io/maven-hello-world/</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:${project.scm.url}</connection> <developerConnection>scm:git:${project.scm.url}</developerConnection> <tag>maven-hello-world-1.0.0</tag> <url>https://github.com/chensoul/maven-hello-world.git</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/chensoul/maven-hello-world/issues</url> </issueManagement> <ciManagement> <system>Github Actions</system> <url>https://github.com/chensoul/maven-hello-world/actions</url> </ciManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> </project>