Interface LockState
-
- All Superinterfaces:
java.io.Serializable
@Immutable public interface LockState extends java.io.SerializableHolds the state of dependencies that should be written to disk when gradle is invoked with--write-locks.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.List<Line>allLines()static LockStatefrom(java.util.stream.Stream<Line> productionLines, java.util.stream.Stream<Line> testLines)java.util.List<Line>productionLines()default java.util.NavigableMap<MyModuleIdentifier,Line>productionLinesByModuleIdentifier()Mapping fromgroup:artifactto the full line.java.util.List<Line>testLines()default java.util.NavigableMap<MyModuleIdentifier,Line>testLinesByModuleIdentifier()Mapping fromgroup:artifactto the full line.
-
-
-
Method Detail
-
productionLines
@Parameter java.util.List<Line> productionLines()
-
testLines
@Parameter java.util.List<Line> testLines()
-
allLines
@Lazy default java.util.List<Line> allLines()
-
productionLinesByModuleIdentifier
@Lazy default java.util.NavigableMap<MyModuleIdentifier,Line> productionLinesByModuleIdentifier()
Mapping fromgroup:artifactto the full line.
-
testLinesByModuleIdentifier
@Lazy default java.util.NavigableMap<MyModuleIdentifier,Line> testLinesByModuleIdentifier()
Mapping fromgroup:artifactto the full line.
-
-