1
0

Adjusted buildsettings

This commit is contained in:
Nigel Barink 2024-07-27 14:47:39 +02:00
parent 0ff3987f8d
commit eb46a1ad47
Signed by: Nigel
GPG Key ID: 6893A31C2D84A9D2
4 changed files with 6 additions and 4 deletions

2
.gitignore vendored
View File

@ -20,4 +20,6 @@ gradle-app.setting
# JDT-specific (Eclipse Java Development Tools) # JDT-specific (Eclipse Java Development Tools)
.classpath .classpath
bin
.settings
.vscode .vscode

View File

@ -32,5 +32,5 @@ java {
application { application {
// Define the main class for the application. // Define the main class for the application.
mainClass = 'org.barink.App' mainClass = 'org.barink.Lox'
} }

View File

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

View File

@ -11,4 +11,4 @@ plugins {
} }
rootProject.name = 'lox' rootProject.name = 'lox'
include('app') include('App')