Skip to content

Commit

Permalink
Merge branch 'master' into Python-locals-use-snake_case-names
Browse files Browse the repository at this point in the history
  • Loading branch information
liblit authored Sep 5, 2023
2 parents fee94f9 + 4369ca2 commit c166bb3
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

import com.diffplug.spotless.LineEnding.PLATFORM_NATIVE

plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@ abstract class VerifiedDownload : DefaultTask() {

// plugin-provided extension for downloading a resource from some URL
@Internal
@Suppress("LeakingThis")
val downloadExtension: DownloadExtension =
project.objects.newInstance(DownloadExtension::class.java, this)

// plugin-provided extension for verifying that a file has the expected checksum
@Internal
@Suppress("LeakingThis")
val verifyExtension: VerifyExtension =
project.objects.newInstance(VerifyExtension::class.java, this)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

package com.ibm.wala.gradle

// Build configuration for subprojects that include Java source code.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

package com.ibm.wala.gradle

plugins {
Expand Down Expand Up @@ -121,9 +123,9 @@ val mavenPublication =
}
}

val repositories = publishing.repositories
val repositories: RepositoryHandler = publishing.repositories

val mavenRepository =
val mavenRepository: MavenArtifactRepository =
repositories.maven {
url =
uri(
Expand Down
2 changes: 2 additions & 0 deletions cast/java/ecj/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

plugins {
application
id("com.ibm.wala.gradle.eclipse-maven-central")
Expand Down
2 changes: 2 additions & 0 deletions cast/java/test/data/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

import com.ibm.wala.gradle.VerifiedDownload
import java.net.URI
import net.ltgt.gradle.errorprone.errorprone
Expand Down
2 changes: 2 additions & 0 deletions cast/js/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

import com.ibm.wala.gradle.CreatePackageList
import com.ibm.wala.gradle.VerifiedDownload
import java.net.URI
Expand Down
2 changes: 2 additions & 0 deletions cast/js/nodejs/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

import com.ibm.wala.gradle.VerifiedDownload
import java.net.URI

Expand Down
2 changes: 2 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

import com.ibm.wala.gradle.CompileKawaScheme
import com.ibm.wala.gradle.JavaCompileUsingEcj
import com.ibm.wala.gradle.VerifiedDownload
Expand Down

0 comments on commit c166bb3

Please sign in to comment.