Skip to content

Commit

Permalink
bugfix: Use newer Bloop as default
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Aug 26, 2024
1 parent 9689e9a commit 0580585
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions apps/resources/bloop-jvm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
"central"
],
"dependencies": [
"ch.epfl.scala::bloopgun-core:latest.stable"
"ch.epfl.scala::bloop-cli:latest.stable"
],
"mainClass": "bloop.cli.Bloop",
"versionOverrides": [
{
"versionRange": "[2.0.0,)",
"dependencies": ["ch.epfl.scala::bloop-cli:latest.stable"]
"versionRange": "[,1.max)",
"dependencies": ["ch.epfl.scala::bloopgun-core:latest.stable"],
"mainClass": "bloop.bloopgun.Bloopgun"
}
]
}
8 changes: 5 additions & 3 deletions apps/resources/bloop.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
"repositories": ["central"],
"launcherType": "graalvm-native-image",
"prebuilt": "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}",
"dependencies": ["ch.epfl.scala::bloopgun-core:latest.stable"],
"dependencies": ["ch.epfl.scala::bloop-cli:latest.stable"],
"mainClass": "bloop.cli.Bloop",
"versionOverrides": [
{
"versionRange": "[2.0.0,)",
"versionRange": "[,1.max)",
"launcherType": "graalvm-native-image",
"prebuilt": "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}",
"dependencies": ["ch.epfl.scala::bloop-cli:latest.stable"]
"dependencies": ["ch.epfl.scala::bloopgun-core:latest.stable"],
"mainClass": "bloop.bloopgun.Bloopgun"
}
]
}

0 comments on commit 0580585

Please sign in to comment.