Elid OR

Greenhorn
+ Follow
since Jun 14, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Elid OR

It is generated when you deploy your artifact to the remote repository you don't have anything to do.
18 years ago
This jar don't exist in any remote repositories but you want to use it in your project right ?

You can use local jar in dependency but it's not a best practice since that you have to create a remote repository for this jar. If you still want to do it :

Take a look at
http://maven.apache.org/ref/2.0.3-SNAPSHOT/maven-model/maven.html#class_dependency
and Check the propertie documentation for "systemPath".
18 years ago
Your war is deployed on webshere too ?
You said that ejb are deployed on a remote machine why do you use localhost in the urlprovider ?
I don't understand your problem, if you create a maven goal "deploy" that copy in your tomcat instance you can just modify the same goal to also copy in your other instance.

Where have you create the deploy goal in the maven.xml ?
18 years ago
You can just remove the dependency node on your jar in the pom.xml

<dependency>
<groupId>your_group</groupId>
<artifactId>your_jar</artifactId>
<version>your_jar_version</version>
<scope>the_scope</scope>
</dependency>
18 years ago