Giter Club home page Giter Club logo

Comments (3)

stempler avatar stempler commented on June 4, 2024

You have the dependency to the http-builder module defined both via platform.bundle and platform.feature.plugin. Try removing the platform.bundle definition (which does not have the exclude).

The exclude is actually a mechanism of Gradle core, you can check the dependencies that Gradle resolves for your project with gradle dependencies. Check there (platform configuration) if the excluded dependency is still there and if so, where it shows up.

from bnd-platform.

Treehopper avatar Treehopper commented on June 4, 2024

Thanks for your quick reply!
I think I got it now. Additional to removing platform.bundle definition, I had to remove the dependencies block.
Here is the updated example:

buildscript {
	repositories {
		jcenter()
		maven {
			url "https://plugins.gradle.org/m2/"
		}
	}
	dependencies {
		classpath 'org.standardout:bnd-platform:1.4.0'
	}
}

apply plugin: 'org.standardout.bnd-platform'

repositories {
	mavenCentral()
}

platform {
	feature(id: 'platform.restclient', name: 'REST client dependencies', version: '1.0.0') {
		 // define what's in the feature
		 plugin 'org.codehaus.groovy.modules.http-builder:http-builder:0.6', {
			 // exclude this transitive dependency
			 exclude group: 'net.sourceforge.nekohtml', module: 'nekohtml'
		}
	}

	// If you have an Eclipse installation available, you may want to set the env. variable
	// ECLIPSE_HOME with its path, that will prevent the BND plugin to download it.
	// As of today, the version downloaded by default is:
	// http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/indigo/SR2/eclipse-rcp-indigo-SR2-win32-x86_64.zip
	if ( System.getenv("ECLIPSE_HOME") != null )
		eclipseHome  = new File(System.getenv("ECLIPSE_HOME"))
}

I think this can be closed. Thanks for your help!

from bnd-platform.

stempler avatar stempler commented on June 4, 2024

Ah yes, exactly, the dependency was actually added three times.

from bnd-platform.

Related Issues (20)

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.