Groovy Documentation

org.gradle.language
[Java] Interface DependentSourceSet

org.gradle.api.Named
  org.gradle.api.Buildable
      org.gradle.language.DependentSourceSet
          org.gradle.language.base.LanguageSourceSet
All Superinterfaces:
Named, Buildable, LanguageSourceSet

@Incubating
public interface DependentSourceSet
extends LanguageSourceSet

A source set that depends on one or more NativeDependencySets to be built.


Method Summary
void dependency(Map dep)

Add a dependency to this source set.

Collection getLibs()

The libraries that this source set requires.

void lib(Object library)

Adds a library that this source set requires.

 
Methods inherited from interface LanguageSourceSet
getSource, source
 
Methods inherited from interface Named
getName
 
Methods inherited from interface Buildable
getBuildDependencies
 

Method Detail

dependency

public void dependency(Map dep)
Add a dependency to this source set.


getLibs

public Collection getLibs()
The libraries that this source set requires.


lib

public void lib(Object library)
Adds a library that this source set requires. This method accepts the following types:


 

Gradle API 1.10-rc-1