File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
paparazzi-gradle-plugin/src
main/java/app/cash/paparazzi/gradle/reporting Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionSha256Sum =bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
4
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
3
+ distributionSha256Sum =8fad3d78296ca518113f3d29016617c7f9367dc005f932bd9d93bf45ba46072b
4
+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
5
5
networkTimeout =10000
6
6
validateDistributionUrl =true
7
7
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package app.cash.paparazzi.gradle.reporting
2
2
3
3
import org.gradle.api.Action
4
4
5
- internal abstract class ErroringAction <T > : Action <T > {
5
+ internal abstract class ErroringAction <T : Any > : Action <T > {
6
6
override fun execute (thing : T ) {
7
7
try {
8
8
doExecute(thing)
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ dependencyResolutionManagement {
7
7
8
8
repositories {
9
9
maven {
10
- url " file://${ rootDir} /../../../../../build/localMaven"
10
+ // Equivalent to the following: $rootDir/../../../../../build/localMaven
11
+ url rootDir. parentFile. parentFile. parentFile. parentFile. parentFile. path + " /build/localMaven"
11
12
}
12
13
mavenCentral()
13
14
// mavenLocal()
Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ private void includeTestProjectsIntoIDE() {
48
48
" multiplatform-plugin-without-android" , // intentionally does not import
49
49
]
50
50
51
+ include(" :test-projects" )
52
+ project(" :test-projects" ). projectDir = new File (rootDir, " paparazzi-gradle-plugin/src/test/projects" )
53
+
51
54
new File (rootDir, " paparazzi-gradle-plugin/src/test/projects" ). eachDir {
52
55
def dirName = it. name
53
56
if (! dirName. startsWith(" ." ) && ! brokenProjects. contains(dirName)) {
You can’t perform that action at this time.
0 commit comments