hello-mod
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.vertx</groupId>
<artifactId>hello-mod</artifactId>
<version>1.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>
<groupId>io.vertx</groupId>
<artifactId>hello-mod</artifactId>
<version>1.0</version>
<name>hello-mod</name>
<description>Description of your module here</description>
<url>Your project url</url>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>The name of the license used, e.g.: The Apache Software License, Version 2.0</name>
<url>URl to the license, e.g.: http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>developer id (e.g. github username)</id>
<name>developer name</name>
<email>developer email</email>
</developer>
</developers>
<scm>
<url>url to your repo - e.g. github repo url</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>testtools</artifactId>
<version>2.0.2-final</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF8</project.build.sourceEncoding>
</properties>
</project>