Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Java 17 #2

Merged
merged 1 commit into from
Dec 28, 2023
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
9 changes: 3 additions & 6 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id 'groovy'
id 'java-gradle-plugin'
id "com.gradle.plugin-publish" version "1.1.0"
id "com.gradle.plugin-publish" version "1.2.1"
}

group = "edu.illinois"
version = "2.1.1"
version = "2.1.7"

repositories {
mavenCentral()
Expand All @@ -23,15 +23,12 @@ gradlePlugin {
website = 'https://github.com/TestingResearchIllinois/NonDex'
vcsUrl = 'https://github.com/TestingResearchIllinois/NonDex'
description = 'NonDex plugin for Gradle'
}

gradlePlugin {
plugins {
nondexPlugin {
id = 'edu.illinois.nondex'
displayName = 'Nondex plugin for Gradle'
implementationClass = 'edu.illinois.nondex.gradle.plugin.NonDexGradlePlugin'
description = 'NonDex plugin for Gradle'
description = 'NonDex Gradle plugin'
tags.addAll('non-deterministic', 'test')
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ repositories {

dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation 'edu.illinois:nondex-common:2.1.1'
testImplementation 'edu.illinois:nondex-common:2.1.7'
testImplementation 'org.hamcrest:hamcrest:2.2'
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

public abstract class NonDexGradlePluginConstants {

public static final String NONDEX_VERSION = "2.1.1";
public static final String NONDEX_COMMON_SHA1 = "4b0ca8ba572baa78d15f8a1f3ecf2bb918cbe9b1";
public static final String NONDEX_VERSION = "2.1.7";
public static final String NONDEX_COMMON_SHA1 = "70dd8887de7a6c46863eca52f1809ed73274d90e";
}