Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common-conventions/api/common-conventions.api
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public abstract class io/technoirlab/conventions/common/internal/CommonBuildFeat

public abstract class io/technoirlab/conventions/common/internal/CommonExtensionImpl : io/technoirlab/conventions/common/api/CommonExtension {
public fun <init> (Lorg/gradle/api/Project;)V
public synthetic fun getBuildFeatures ()Lio/technoirlab/conventions/common/api/CommonBuildFeatures;
public abstract fun getBuildFeatures ()Lio/technoirlab/conventions/common/internal/CommonBuildFeaturesImpl;
protected final fun getProject ()Lorg/gradle/api/Project;
public fun initDefaults ()V
Expand Down
1 change: 0 additions & 1 deletion libraries/gradle-test-kit/api/gradle-test-kit.api
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public final class io/technoirlab/gradle/test/kit/Generator : java/lang/Enum {
}

public final class io/technoirlab/gradle/test/kit/GradleConfig {
public fun <init> ()V
public fun <init> (Lio/technoirlab/gradle/test/kit/GradleConfig;)V
public final fun getArguments ()Ljava/util/List;
public final fun getBuildCache ()Z
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ package io.technoirlab.gradle.test.kit

import java.nio.file.Path
import java.nio.file.Paths
import kotlin.io.path.ExperimentalPathApi
import kotlin.io.path.copyToRecursively

@OptIn(ExperimentalPathApi::class)
internal fun copyResources(dirName: String, targetDir: Path) {
val resourcesDir = Paths.get(::copyResources.javaClass.classLoader.getResource(dirName)!!.toURI())
resourcesDir.copyToRecursively(targetDir, overwrite = false, followLinks = true)
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginManagement {
mavenLocal()
}
plugins {
val conventionPluginsVersion = "v49"
val conventionPluginsVersion = "v50"
id("io.technoirlab.conventions.gradle-plugin") version conventionPluginsVersion
id("io.technoirlab.conventions.jvm-application") version conventionPluginsVersion
id("io.technoirlab.conventions.jvm-library") version conventionPluginsVersion
Expand Down
Loading