Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google</groupId> <artifactId>google</artifactId> <version>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"> <modelVersion>4.0.0</modelVersion> <groupId>com.google</groupId> <artifactId>google</artifactId> <version>1</version> <name>Google</name> <description>Internally developed code released as open source.</description> <packaging>pom</packaging> <organization> <name>Google</name> <url>http://www.google.com/</url> </organization> <url>http://code.google.com/hosting/projects.html</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <id>google-maven-repository</id> <name>Google Maven Repository</name> <url>dav:https://google-maven-repository.googlecode.com/svn/repository/</url> </repository> <snapshotRepository> <id>google-maven-snapshot-repository</id> <name>Google Maven Snapshot Repository</name> <url>dav:https://google-maven-repository.googlecode.com/svn/snapshot-repository/</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> </distributionManagement> </project>