Skip to content

Instantly share code, notes, and snippets.

@jonfuller
Created May 22, 2014 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonfuller/346514743cfa79cbc447 to your computer and use it in GitHub Desktop.
Save jonfuller/346514743cfa79cbc447 to your computer and use it in GitHub Desktop.
POM's for downloading JAR's
<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.doesnt.matter</groupId>
<artifactId>Whatever</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Simple POM to download some dependencies</name>
<url>http://jonfuller.co</url>
<dependencies>
<dependency>
<groupId>com.squareup.retrofit</groupId>
<artifactId>retrofit</artifactId>
<version>1.5.1</version>
<scope/>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.doesnt.matter</groupId>
<artifactId>Whatever</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Simple POM to download some dependencies</name>
<url>http://jonfuller.co</url>
<dependencies>
<dependency>
<groupId>com.netflix.rxjava</groupId>
<artifactId>rxjava-core</artifactId>
<version>0.18.3</version>
<scope/>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment