Added snapshot to example

This commit is contained in:
Erik C. Thauvin 2023-11-08 18:50:07 -08:00
parent 8267c2ad57
commit dbad341d19
2 changed files with 3 additions and 1 deletions

1
examples/bld/.idea/.name generated Normal file
View file

@ -0,0 +1 @@
cryptoprice-examples-bld

View file

@ -21,12 +21,13 @@ public class CryptoPriceExampleBuild extends BaseProject {
javaRelease = 11; javaRelease = 11;
downloadSources = true; downloadSources = true;
autoDownloadPurge = true; autoDownloadPurge = true;
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile) scope(compile)
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", version(1, 9, 20))) .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", version(1, 9, 20)))
.include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 1))) .include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 2, "SNAPSHOT")))
.include(dependency("org.json", "json", "20231013")); .include(dependency("org.json", "json", "20231013"));
} }