Skip to content

Commit 86b0b27

Browse files
committed
Use version of NetLogo that doesn't require JitPack
1 parent 2696371 commit 86b0b27

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

build.sbt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Test / scalaSource := baseDirectory.value / "src" / "test"
1111
Compile / scalaSource := baseDirectory.value / "src" / "main"
1212
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings", "-release", "11")
1313

14-
netLogoVersion := "7.0.0-424b50b" // This extension gets its NL version from language-library; any update to its NL version has to be mirrored in that package and published in a new version --Jason B. (5/5/25)
14+
netLogoVersion := "7.0.0-2486d1e" // This extension gets its NL version from language-library; any update to its NL version has to be mirrored in that package and published in a new version --Jason B. (5/5/25)
1515
netLogoClassManager := "org.nlogo.extensions.py.PythonExtension"
1616
netLogoPackageExtras += (baseDirectory.value / "src" / "pyext.py", None)
1717

@@ -22,10 +22,9 @@ Compile / packageBin / artifactPath := {
2222
}
2323

2424
resolvers ++= Seq(
25-
"netlogo-language-library" at "https://dl.cloudsmith.io/public/netlogo/language-library/maven",
26-
"jitpack" at "https://jitpack.io"
25+
"netlogo-language-library" at "https://dl.cloudsmith.io/public/netlogo/language-library/maven"
2726
)
2827

2928
libraryDependencies ++= Seq(
30-
"org.nlogo.languagelibrary" %% "language-library" % "3.3.1"
29+
"org.nlogo.languagelibrary" %% "language-library" % "3.3.3-cfbf09b"
3130
)

0 commit comments

Comments
 (0)