-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
367 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,6 @@ dist/ | |
ehthumbs.db | ||
fabric.properties | ||
gen/ | ||
gradle.properties | ||
hs_err_pid* | ||
kobaltBuild | ||
kobaltw*-test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
image: gradle:7-jdk11 | ||
image: gradle:8-jdk11 | ||
|
||
variables: | ||
GRADLE_OPTS: "-Dorg.gradle.daemon=false" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-16.9 KB
(72%)
examples/annotation-processor/java/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion
4
examples/annotation-processor/java/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 25 additions & 25 deletions
50
examples/annotation-processor/java/src/generated/java/com/example/GeneratedVersion.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Do not modify! -- ALL CHANGES WILL BE ERASED! | ||
*/ | ||
* This file is automatically generated. | ||
* Do not modify! -- ALL CHANGES WILL BE ERASED! | ||
*/ | ||
|
||
package com.example; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* Provides semantic version information. | ||
* | ||
* @author <a href="https://github.com/ethauvin/semver">Semantic Version Annotation Processor</a> | ||
*/ | ||
* Provides semantic version information. | ||
* | ||
* @author <a href="https://github.com/ethauvin/semver">Semantic Version Annotation Processor</a> | ||
*/ | ||
public final class GeneratedVersion { | ||
public static final String PROJECT = "Java Example"; | ||
public static final Date BUILDDATE = new Date(1651261557743L); | ||
public static final int MAJOR = 2; | ||
public static final int MINOR = 11; | ||
public static final int PATCH = 0; | ||
public static final String PRERELEASE = ""; | ||
public static final String PRERELEASE_PREFIX = "-"; | ||
public static final String BUILDMETA = ""; | ||
public static final String BUILDMETA_PREFIX = "+"; | ||
public static final String SEPARATOR = "."; | ||
public static final String VERSION = "2.11.0"; | ||
public static final String PROJECT = "Java Example"; | ||
public static final Date BUILDDATE = new Date(1707709694421L); | ||
public static final int MAJOR = 2; | ||
public static final int MINOR = 12; | ||
public static final int PATCH = 0; | ||
public static final String PRERELEASE = ""; | ||
public static final String PRERELEASE_PREFIX = "-"; | ||
public static final String BUILDMETA = ""; | ||
public static final String BUILDMETA_PREFIX = "+"; | ||
public static final String SEPARATOR = "."; | ||
public static final String VERSION = "2.12.0"; | ||
|
||
/** | ||
* Disables the default constructor. | ||
*/ | ||
private GeneratedVersion() { | ||
throw new UnsupportedOperationException("Illegal constructor call."); | ||
} | ||
/** | ||
* Disables the default constructor. | ||
*/ | ||
private GeneratedVersion() { | ||
throw new UnsupportedOperationException("Illegal constructor call."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#Generated by the Semver Plugin for Gradle | ||
#Fri Apr 29 12:45:57 PDT 2022 | ||
#Sun Feb 11 19:56:02 PST 2024 | ||
version.buildmeta= | ||
version.major=2 | ||
version.minor=11 | ||
version.minor=13 | ||
version.patch=0 | ||
version.prerelease= | ||
version.project=Java Example | ||
version.semver=2.11.0 | ||
version.semver=2.13.0 |
Oops, something went wrong.