Skip to content

Commit

Permalink
Make comment more intuitive
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish authored Apr 21, 2024
1 parent 660eae4 commit 5646a3c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ runs {
// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }

// Sets up a configuration for "local" dependencies -- that is, dependencies we want to have at runtime in development
// for testing, but do not want to publish a dependency on.
// Sets up a dependency configuration called 'localRuntime'.
// This configuration should be used instead of 'runtimeOnly' to declare
// a dependency that will be present for runtime testing but that is
// "optional", meaning it will not be pulled by dependents of this mod.
configurations {
runtimeClasspath.extendsFrom localRuntime
}
Expand Down

0 comments on commit 5646a3c

Please sign in to comment.