ivy « repository « Maven/Ant Q&A

Home
Maven/Ant Q&A
1.Ant
2.artifact
3.dependency
4.deploy
5.Development
6.eclipse
7.glassfish
8.hudson
9.integration
10.jetty
11.junit
12.m2eclipse
13.module
14.netbeans
15.package
16.plugin
17.POM
18.repository
19.svn
Maven/Ant Q&A » repository » ivy 

1. Use public maven repository with ivy    stackoverflow.com

I have an ivy.xml containing

<dependencies>
  <dependency org="commons-lang" name="commons-lang" rev="2.4"/>
  <dependency org="foo-bar" name="superwidgets" rev="1.5"/>
</dependencies>
The whole superwidget stuff is hosted in a maven repository at http://example.com/m2/. The ivy ...

2. Pulling oracle jdbc driver from local nexus repository through ivy -> tries to hit external source?    stackoverflow.com

I'm behind a proxy, and I'm trying to grab a jar from my local nexus repository that I added manually. Why does grails/ivy try to connect outward when I try to ...

3. Maven/Ivy repositories for the Eclipse SDK    stackoverflow.com

I want to use a library from Eclipse SDK (Java AST in my case, but it could easily be SWT or something else). My project uses Ivy for dependency management. Is ...

4. How to make Maven use an ivy repository for dependencies resolution?    stackoverflow.com

I know that we can configure ivy to have a Maven repository as a source, but can we do the opposite? Or in other words, can I have a Maven based ...

5. Use maven repository as local ivy cache    stackoverflow.com

Is there any possibility to use local Maven repository (~/.m2) as local Ivy cache (~/.ivy)? They have different layouts. Sometimes I use Maven and sometimes I use SBT which uses Ivy ...

6. Ivy - Add repository, get from specific repository    stackoverflow.com

I'm pretty new to IVY. I'm trying to do the following: I wanted to add http://mvnrepository.com to the repository list. I'm not sure if I have to define the ...

7. Is is legal to have relativePath to parent pom in a repository?    stackoverflow.com

I found this artifact pom in the maven 2 central repository: http://search.maven.org/remotecontent?filepath=javax/servlet/jsp/jsp-api/2.1.2/jsp-api-2.1.2.pom It includes:

...
<parent>
  <groupId>org.glassfish.web</groupId>
  <artifactId>jsp</artifactId>
  <version>2.2</version>
  <relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<packaging>jar</packaging>
<version>${jsp-api.version}</version>
<name>JavaServer Pages(TM) API v${jsp-api.version}</name>
....
I encountered a problem when I tried ...

8. How to create a GraphML repository report with Maven?    stackoverflow.com

I want to create a GraphML repository report for all in-house made artifacts in my local Maven repository similar to the repreport target (ant/ivy). so far i found:

  • create mega-pom which ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.