Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jbock-java/jbock
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.19
Choose a base ref
...
head repository: jbock-java/jbock
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Oct 24, 2024

  1. update workflow

    h908714124 committed Oct 24, 2024
    Copy the full SHA
    c45a7af View commit details

Commits on Nov 17, 2024

  1. fix gradle warnings

    h908714124 committed Nov 17, 2024
    Copy the full SHA
    aa21ca2 View commit details

Commits on Dec 17, 2024

  1. update gradle

    h908714124 committed Dec 17, 2024
    Copy the full SHA
    622a9d8 View commit details

Commits on Dec 21, 2024

  1. fix workflow

    h908714124 committed Dec 21, 2024
    Copy the full SHA
    d1d499d View commit details
Showing with 20 additions and 22 deletions.
  1. +1 −1 compiler/build.gradle
  2. +16 −20 examples/build.gradle
  3. +1 −1 gradle/wrapper/gradle-wrapper.properties
  4. +2 −0 jbock/build.gradle
2 changes: 1 addition & 1 deletion compiler/build.gradle
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ jar {

test {
useJUnitPlatform()
jvmArgs('-Xshare:off')
jvmArgs "-Xshare:off"
testLogging {
events('failed')
}
36 changes: 16 additions & 20 deletions examples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
plugins {
id 'java'
id 'java'
}

repositories {
mavenCentral()
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
mavenCentral()
}

compileJava {
options.encoding = 'UTF-8'
sourceCompatibility = '17'
targetCompatibility = '17'
options.encoding = 'UTF-8'
sourceCompatibility = '17'
targetCompatibility = '17'
}

dependencies {
def jbock = project(':jbock')
implementation(jbock)
annotationProcessor project(':compiler')
annotationProcessor project(':jbock')
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
def jbock = project(':jbock')
implementation(jbock)
annotationProcessor project(':compiler')
annotationProcessor project(':jbock')
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

test {
useJUnitPlatform()
testLogging {
events 'failed'
}
useJUnitPlatform()
jvmArgs "-Xshare:off"
testLogging {
events 'failed'
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
2 changes: 2 additions & 0 deletions jbock/build.gradle
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@ dependencies {
api('io.github.jbock-java:either:1.5.2')
testImplementation('org.mockito:mockito-core:5.14.2')
testImplementation('org.junit.jupiter:junit-jupiter:5.11.2')
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

jar {
@@ -41,6 +42,7 @@ jar {

test {
useJUnitPlatform()
jvmArgs "-Xshare:off"
testLogging {
events('failed')
}