Skip to content

Instantly share code, notes, and snippets.

@drm
Created March 18, 2019 09:45
Show Gist options
  • Save drm/dec692521154e0ef40d6a95b67d826cc to your computer and use it in GitHub Desktop.
Save drm/dec692521154e0ef40d6a95b67d826cc to your computer and use it in GitHub Desktop.
Quickly download maven dependencies without using maven.
cat > pom.xml <<-EOF
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>temp</groupId>
<artifactId>temp</artifactId>
<version>master</version>
<dependencies>
<dependency>
<groupId>$1</groupId>
<artifactId>$2</artifactId>
<version>$3</version>
</dependency>
</dependencies>
</project>
EOF
mvn dependency:copy-dependencies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment