Giter Site home page Giter Site logo

ivy-maven-plugin's Introduction

Ivy Maven Plugin

A plugin to add apache Ivy dependencies to a Maven project. This is a fork of Evgeny Goldin's Ivy Maven Plugin that fixes support for transitive dependencies.

Configuration

The ivy goal can be configured with

  • settings a String file path or URL that points to an Ivy settings (xml) file.
  • transitive a boolean (default false), whether to add the transitive dependencies of the configured dependencies too.
  • scope a String (default "compile") to define what Maven scope to add the dependencies to.
  • dependencies a list of dependency elements, in the same format as the Maven Dependency Plugin

The fields of each dependency element correspond to their Ivy equivalent as follows:

  • groupId is an Ivy module organisation
  • artifactId is an Ivy module name
  • version is an Ivy module revision
  • type is the Ivy artifact type and ext
  • classifier is a String or regex that matches an Ivy artifact's name.
  • baseVersion is the Ivy configuration to use, defaulting to "default" if not given

The plugin can only refer to Ivy artifacts from the default configuration of each Ivy dependency.

Examples

An example of what to put in your pom.xml:

<plugin>
  <groupId>com.github.remis-thoughts</groupId>
  <artifactId>ivy-maven-plugin</artifactId>
  <version>1.0.2</version>
  <executions>
    <execution>
      <id>add-dependencies</id>
      <phase>initialize</phase>
      <goals>
        <goal>ivy</goal>
      </goals>
      <configuration>
        <settings>ivy-settings.xml</settings>
        <dependencies>
          <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
          </dependency>
        </dependencies>
        <transitive>false</transitive>
      </configuration>
    </execution>
  </executions>
</plugin>

ivy-maven-plugin's People

Contributors

remis-thoughts avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.