Skip to content

Instantly share code, notes, and snippets.

@kknd22
Created February 28, 2014 14:30
Show Gist options
  • Save kknd22/9272030 to your computer and use it in GitHub Desktop.
Save kknd22/9272030 to your computer and use it in GitHub Desktop.
Maven pom - downnload a jar only
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.myproject</groupId>
<artifactId>my-app</artifactId>
<version>1.0-SNAPSHOT</version>
<name>My App</name>
<properties>
<org.springframework.version></org.springframework.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.1.4.RELEASE</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment