Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7248565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T22:09:19+00:00 2026-05-28T22:09:19+00:00

How am I to know which configurations are available for a particular dependency? I

  • 0

How am I to know which configurations are available for a particular dependency?

I understand these are common configurations: default,master,compile,provided,test,system,sources,javadoc,optional,runtime

But some dependencies do not have all of these defined, and others define other custom configurations. I don’t see any mention of the available configurations on springsource or maven repo.

Below is my embarrassingly hacked-together ivy.xml. Notice that I define org.springframework.spring-library conf as “runtime”. This fails because org.springframework.spring-library does not have a “runtime” conf.

<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
    <info organisation="com.myapp" module="MyAppName" revision="1.0"/>
    <configurations>
        <conf name="compile" visibility="public" description="Dependencies needed for compile"/>
        <conf name="runtime" visibility="public" extends="compile" description="Dependencies needed for runtime"/>
        <conf name="test" visibility="private" description="Test dependencies"/>
    </configurations>
    <dependencies>
        <dependency org="org.springframework" name="org.springframework.spring-library" rev="3.1.0.RELEASE" conf="runtime"/>
        <dependency org="org.springframework.security" name="spring-security-web" rev="3.1.0.RELEASE" transitive="false" conf="*"/>
        <dependency org="org.springframework.security" name="spring-security-config" rev="3.1.0.RELEASE" transitive="false" conf="*"/>
        <dependency org="org.springframework.security" name="spring-security-core" rev="3.1.0.RELEASE" transitive="false" conf="*"/>
        <dependency org="org.codehaus.jackson" name="com.springsource.org.codehaus.jackson" rev="1.4.3" conf="runtime->*"/>
        <dependency org="org.codehaus.jackson" name="com.springsource.org.codehaus.jackson.mapper" rev="1.4.3" conf="runtime->*"/>
        <dependency org="org.apache.httpcomponents" name="com.springsource.org.apache.httpcomponents.httpclient" rev="4.1.1" conf="runtime->*" />
        <dependency org="org.aspectj" name="org.aspectj-library" rev="1.6.5.RELEASE" conf="runtime,compile->runtime(default)"/>
        <dependency org="net.sourceforge.cglib" name="com.springsource.net.sf.cglib" rev="2.2.0" conf="compile->*"/>
        <dependency org="log4j" name="log4j" rev="1.2.14" conf="runtime->*"/>
        <dependency org="joda-time" name="joda-time" rev="2.0" conf="runtime,compile->runtime(default)"/>
        <exclude type="license" ext="txt"/>
        <exclude type="notice" ext="txt"/>
        <exclude org="javax.servlet" conf="runtime"/>
        <exclude org="javax.el" conf="runtime"/>
        <exclude org="javax.faces" conf="runtime"/>
        <exclude org="javax.portlet" conf="runtime"/>
        <exclude org="javax.xml.rpc" conf="runtime"/>
        <exclude org="javax.xml.soap" conf="runtime"/>
        <exclude org="javax.xml.ws" conf="runtime"/>
        <exclude org="commons-logging" conf="runtime"/>
    </dependencies>
</ivy-module>    
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T22:09:20+00:00Added an answer on May 28, 2026 at 10:09 pm

    org.springframework.spring-library does appear to have a runtime configuration. Specifically the configurations for spring-library are:

    <configurations>
        <conf name="compile" visibility="public" extends="aspects" description="Maven compile dependencies"/>
        <conf name="optional" visibility="public" extends="compile" description="Maven optional dependencies"/>
        <conf name="provided" visibility="public" description="Maven provided dependencies"/>
        <conf name="dm-server-provided" visibility="public" description="Maven provided dependencies that already exist in the platform"/>
        <conf name="runtime" visibility="public" extends="compile" description="Runtime dependencies"/>
        <conf name="test" visibility="private" description="Test dependencies"/>
        <conf name="aspects" visibility="private" description="Aspects to be woven"/>
        <conf name="external" visibility="private" description="External candidates to be woven"/>
        <conf name="additional" visibility="private" description="Additional candidates to be included in the PAR"/>
    </configurations>
    

    To get this list, I added the following dependency and performed a resolve (note: no conf specfied)

    <dependency org="org.springframework" name="org.springframework.spring-library" rev="3.1.0.RELEASE"/>
    

    I then had a look at the ivy file for org.springframework.spring-library in my cache (normally found at ${user.home}/.ivy2/cache/org.springframework/org.springframework.spring-library/ivy-3.1.0.RELEASE.xml).

    There may be a easier way to get the list of configurations, but the above does the trick for me.

    Since the SpringSource EBR provides ivy files, you can get the configurations directly from
    http://repository.springsource.com/ivy/libraries/release/org.springframework/org.springframework.spring-library/3.1.0.RELEASE/ivy-3.1.0.RELEASE.xml, but IMO figuring out the correct url is more effort that the technique used above.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know which dependency described in my pom.xml brings a transitive
I'd like to know which libraries are used by executables on my system. More
Does anyone know if I can find an emacs color syntax configuration which resembles
I want to know which tool can be used to measure the cyclomatic complexity
I'd like to know which method is recommended on Windows C programming: using malloc
How do I know which files and registry keys an application is trying to
I would like to know which one is the best material that I can
Does anyone know which property sets the text color for disabled control? I have
Does anyone know which permissions are required for refreshing or connecting to linked tables
Does anybody know which JSF version is most suitable to use when deploying to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.