Skip to content

Commit

Permalink
Merge pull request #143 from gabilang/fix-build-issues
Browse files Browse the repository at this point in the history
Upgrade Gradle to version 8.2.1
  • Loading branch information
gabilang committed Aug 4, 2023
2 parents f77fa39 + 1c8089e commit e3d1742
Show file tree
Hide file tree
Showing 8 changed files with 200 additions and 143 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Ensure all Java files use LF.
*.java eol=lf
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ task codeCoverageReport(type: JacocoReport) {
additionalClassDirs files("${buildDir}/classes")

reports {
xml.enabled = true
html.enabled = true
csv.enabled = true
xml.required = true
html.required = true
csv.required = true
xml.destination = new File("${buildDir}/reports/jacoco/report.xml")
html.destination = new File("${buildDir}/reports/jacoco/report.html")
csv.destination = new File("${buildDir}/reports/jacoco/report.csv")
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

group=org.ballerinalang
version=0.1.13-SNAPSHOT
ballerinaLangVersion=2201.7.0-20230619-175900-bb4e4544
ballerinaLangVersion=2201.8.0-20230726-145300-b2bdf796
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
Expand All @@ -34,7 +34,7 @@ stdlibUrlVersion=2.2.1
stdlibTaskVersion=2.2.1
stdlibFileVersion=1.2.1
stdlibCryptoVersion=2.2.1
stdlibLogVersion=2.2.1
stdlibLogVersion=2.8.1-20230718-085900-36c385c
stdlibMimeVersion=2.2.1
stdlibCacheVersion=3.2.1
stdlibAuthVersion=2.2.1
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
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.6.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit e3d1742

Please sign in to comment.