Skip to content

Instantly share code, notes, and snippets.

@SmiddyPence
Created January 31, 2014 15:40
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 SmiddyPence/8734450 to your computer and use it in GitHub Desktop.
Save SmiddyPence/8734450 to your computer and use it in GitHub Desktop.
Maven Project-Local Repository Example
mvn deploy:deploy-file -Durl=file://C:/workspaces/my-project/repo -Dfile=fullofmagic-7.7.7-SNAPSHOT.jar -DgroupId=com.magic.spells -DartifactId=fullofmagic -Dpackaging=jar -Dversion=1.0.11-SNAPSHOT
<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.nps</groupId>
<artifactId>my-project</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>com.magic.spells</groupId>
<artifactId>fullofmagic</artifactId>
<version>7.7.7-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>project.local</id>
<name>project</name>
<url>file:${project.basedir}/repo</url>
</repository>
</repositories>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment