Hi
In my COMPANY we are using maven to build our Projects But The Problem Was Adding Internal jars To Maven
I Am Trying to reslove issue by following way .In this way If It will falil I will Come Back
In my COMPANY we are using maven to build our Projects But The Problem Was Adding Internal jars To Maven
I Am Trying to reslove issue by following way .In this way If It will falil I will Come Back
xml version="1.0" encoding="utf-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<name>Depending project</name>
<groupId>com.example</groupId>
<artifactId>dependent</artifactId>
<version>0.9</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>dependency</artifactId>
<version>0.9.3</version>
<type>jar</type>
</dependency>
</dependencies>
<repositories>
<repository>
<id>project-specific-deps</id>
<name>project-specific-deps</name>
<url>file:///${basedir}/repo
</repository>
</repositories>
</project>
Reference URLS
http://stackoverflow.com/questions/5301156/maven-keeping-dependent-jars-in-project-version-control
http://code.google.com/p/addjars-maven-plugin/issues/detail?id=4
http://stackoverflow.com/questions/2229757/maven-add-a-dependency-to-a-jar-by-relative-path
http://stackoverflow.com/questions/2229757/maven-add-a-dependency-to-a-jar-by-relative-path
http://stackoverflow.com/questions/10581866/maven-plugin-maven-downloads-only-pom-not-jar-file-from-internal-repo
No comments:
Post a Comment