Skip to content

Commit

Permalink
Rename: 'java-*-plugins' -> 'kotlin-*-plugins'
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Dec 4, 2023
1 parent 8f4c321 commit 98f2d6c
Show file tree
Hide file tree
Showing 20 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bespin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library")
id("org.example.kotlin-library")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion corellia/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library-with-test-fixtures")
id("org.example.kotlin-library-with-test-fixtures")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion coruscant/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library-published")
id("org.example.kotlin-library-published")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
implementation(platform(project(":plugins-platform")))

implementation(project(":java-base-plugins"))
implementation(project(":kotlin-base-plugins"))
implementation("org.example:build-parameters-plugins")
implementation("org.owasp:dependency-check-gradle")
implementation("io.fuchs.gradle.classpath-collision-detector:classpath-collision-detector")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.example.application.tasks.MD5DirectoryChecksum
import org.example.application.tasks.VersionXml

plugins {
id("org.example.java")
id("org.example.kotlin")
id("application") // For stand-alone application packaging
id("jacoco-report-aggregation") // get and aggregated coverage report for all tests
id("test-report-aggregation") // get and aggregated result report for all tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java")
id("org.example.kotlin")
}

// Specific API fixtures used for testing without live service
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("war")
id("org.example.java")
id("org.example.kotlin")
id("org.example.build-parameters")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {
dependencies {
implementation(platform(project(":plugins-platform")))

implementation(project(":java-base-plugins"))
implementation(project(":kotlin-base-plugins"))
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("maven-publish")
id("org.example.java-library")
id("org.example.kotlin-library")
}

// Publish with sources and Javadoc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins {
id("org.example.java-library")
id("org.example.kotlin-library")
id("java-test-fixtures")
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins {
id("java-library")
id("org.example.java")
id("org.example.kotlin")
}
2 changes: 1 addition & 1 deletion kamino/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library-published")
id("org.example.kotlin-library-published")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion kashyyyk/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library")
id("org.example.kotlin-library")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion naboo/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library")
id("org.example.kotlin-library")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion tatooine/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.example.java-library")
id("org.example.kotlin-library")
}

dependencies {
Expand Down

0 comments on commit 98f2d6c

Please sign in to comment.