Skip to content

Commit 313da31

Browse files
authored
Merge pull request #3 from jjohannes/update_to_latest_gradle_standards
Update plugin to latest Gradle standards
2 parents cb34cad + b7b2775 commit 313da31

File tree

13 files changed

+321
-195
lines changed

13 files changed

+321
-195
lines changed

build.gradle

-34
This file was deleted.

build.gradle.kts

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
plugins {
2+
`embedded-kotlin`
3+
id("com.gradle.plugin-publish") version "1.0.0"
4+
}
5+
6+
val javaVersion = JavaVersion.toVersion(
7+
providers.fileContents(layout.projectDirectory.file(".java-version")).asText.get())
8+
9+
java {
10+
sourceCompatibility = javaVersion
11+
targetCompatibility = javaVersion
12+
}
13+
14+
dependencies {
15+
testImplementation("junit:junit:4.13.2")
16+
testImplementation("org.assertj:assertj-core:3.23.1")
17+
}
18+
19+
repositories {
20+
mavenCentral()
21+
}
22+
23+
group = "io.fuchs.gradle.classpath-collision-detector"
24+
version = "0.2"
25+
26+
gradlePlugin {
27+
plugins.create("classpathCollisionDetectorPlugin") {
28+
id = "io.fuchs.gradle.classpath-collision-detector"
29+
implementationClass = "io.fuchs.gradle.collisiondetector.CollisionDetectorPlugin"
30+
displayName = "Classpath Collision Detector Plugin"
31+
}
32+
}
33+
34+
pluginBundle {
35+
website = "https://github.com/REPLicated/classpath-collision-detector"
36+
vcsUrl = "https://github.com/REPLicated/classpath-collision-detector"
37+
description = "A Gradle plugin to detect potential classpath collisions between library jars."
38+
tags = listOf("classpath", "collision", "duplicate", "detector")
39+
}

gradle/wrapper/gradle-wrapper.jar

5.91 KB
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip

0 commit comments

Comments
 (0)