Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GradleUp/shadow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0755162b9fd177a476ccd9f555c9891d322689cc
Choose a base ref
..
head repository: GradleUp/shadow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 18c00e6be3b49807f88c85595e2aa19acfe6e665
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 ...intiTest/kotlin/com/github/jengelman/gradle/plugins/shadow/util/repo/maven/MavenFileRepository.kt
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ import java.net.URI
/**
* A fixture for dealing with file Maven repositories.
*/
open class MavenFileRepository(private val rootDir: File) : MavenRepository {
open class MavenFileRepository(protected val rootDir: File) : MavenRepository {

override val uri: URI = rootDir.toURI()