Skip to content

Commit

Permalink
Add support for Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
yananhub committed Aug 20, 2024
1 parent 3eb83f8 commit b180040
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions maven-central-publish/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '1.2.1'
id 'signing'
id 'tech.yanand.maven-central-publish' version '1.1.0'
id 'tech.yanand.maven-central-publish' version '1.1.1'
}

group = 'tech.yanand.gradle'
version = '1.1.1'
version = '1.2.0'

repositories {
mavenCentral()
}

dependencies {
testImplementation platform('org.junit:junit-bom:5.10.2')
testImplementation platform('org.junit:junit-bom:5.10.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.mockito:mockito-core:5.12.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.12.0'
}

java {
sourceCompatibility = '17'
sourceCompatibility = '11'
withJavadocJar()
withSourcesJar()
}
Expand Down

0 comments on commit b180040

Please sign in to comment.