-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Upgrading to Kotlin to 1.9.22 - Upgrading to Array to 1.2.1
- Loading branch information
1 parent
8d81800
commit 2f10b17
Showing
10 changed files
with
219 additions
and
198 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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
# Ignore Gradle project-specific cache directory | ||
.gradle | ||
|
||
# Ignore Gradle build output directory | ||
build | ||
|
||
.gradle/ | ||
build/ | ||
.idea/* | ||
*.iml | ||
target/* | ||
.DS_Store | ||
*.iws | ||
*.ipr | ||
.java-version |
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,52 +1,34 @@ | ||
/* | ||
* This file was generated by the Gradle 'init' task. | ||
* | ||
* This generated file contains a sample Kotlin application project to get you started. | ||
*/ | ||
|
||
plugins { | ||
// Apply the Kotlin JVM plugin to add support for Kotlin. | ||
id 'org.jetbrains.kotlin.jvm' version '1.6.21' | ||
|
||
// Apply the application plugin to add support for building a CLI application. | ||
id 'org.jetbrains.kotlin.jvm' version '1.9.22' | ||
id 'org.jetbrains.kotlin.kapt' version '1.9.22' | ||
id 'application' | ||
id 'idea' | ||
} | ||
|
||
apply plugin: 'kotlin-kapt' | ||
|
||
repositories { | ||
// Use jcenter for resolving dependencies. | ||
// You can declare any Maven/Ivy/file repository here. | ||
mavenCentral() | ||
jcenter() | ||
maven { url "https://dl.bintray.com/arrow-kt/arrow-kt/" } | ||
} | ||
|
||
def arrow_version = "0.10.5" | ||
def arrowVersion = "1.2.1" | ||
def junitVersion = "5.10.1" | ||
|
||
dependencies { | ||
compile "io.arrow-kt:arrow-core:$arrow_version" | ||
compile "io.arrow-kt:arrow-syntax:$arrow_version" | ||
kapt "io.arrow-kt:arrow-meta:$arrow_version" | ||
|
||
// Align versions of all Kotlin components | ||
implementation platform('org.jetbrains.kotlin:kotlin-bom') | ||
|
||
// Use the Kotlin JDK 8 standard library. | ||
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' | ||
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.9.2') | ||
|
||
testImplementation 'org.assertj:assertj-core:3.24.2' | ||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2' | ||
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.2' | ||
|
||
implementation "io.arrow-kt:arrow-core:$arrowVersion" | ||
implementation "io.arrow-kt:arrow-fx-coroutines:$arrowVersion" | ||
|
||
testImplementation "org.assertj:assertj-core:3.25.1" | ||
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion" | ||
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion" | ||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion" | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
} | ||
|
||
application { | ||
// Define the main class for the application. | ||
mainClassName = 'RailwayOrientedProgramming.AppKt' | ||
} | ||
mainClass = 'RailwayOrientedProgramming.AppKt' | ||
} |
Binary file not shown.
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-6.1.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.