-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Expose plugiDownloadURL from provider schemas to plugin.json to mak…
…e community packages automatically installable * Avoid clashes on plugin.json resources * Enable building language plugin for different platforms
- Loading branch information
Showing
15 changed files
with
140 additions
and
49 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,4 +1,4 @@ | ||
//> using scala "2.13.10" | ||
//> using lib "org.scalameta::scalameta:4.8.10" | ||
//> using lib "com.lihaoyi::upickle:3.1.2" | ||
//> using lib "com.lihaoyi::upickle:3.1.3" | ||
//> using lib "com.lihaoyi::os-lib:0.9.1" |
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
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,5 +1,5 @@ | ||
//> using scala "3.3.0" | ||
|
||
//> using lib "io.spray::spray-json:1.3.6" | ||
//> using lib "io.github.classgraph:classgraph:4.8.161" | ||
//> using lib "io.github.classgraph:classgraph:4.8.162" | ||
//> using options "-java-output-version:11" |
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
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
3 changes: 2 additions & 1 deletion
3
language-plugin/tests/resources/executors/scala-cli/project.scala
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,3 +1,4 @@ | ||
//> using scala "3.3.0" | ||
//> using dep "org.virtuslab::besom-custom-resource-plugin:0.0.1-SNAPSHOT" | ||
//> using dep "org.virtuslab::besom-fake-standard-resource:1.2.3-TEST" | ||
//> using dep "org.virtuslab::besom-fake-external-resource:2.3.4-TEST" | ||
//> using options "-java-output-version:11" |
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
6 changes: 6 additions & 0 deletions
6
...rces/fake-external-resource-plugin/resources/besom/api/fake-external-resource/plugin.json
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"resource": true, | ||
"name": "aci", | ||
"version": "0.0.6", | ||
"server": "github://api.github.com/netascode/pulumi-aci" | ||
} |
15 changes: 15 additions & 0 deletions
15
language-plugin/tests/resources/fake-standard-resource-plugin/Lib.scala
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//> using scala "3.3.0" | ||
|
||
//> using resourceDir "resources" | ||
|
||
//> using publish.organization "org.virtuslab" | ||
//> using publish.name "besom-fake-standard-resource" | ||
//> using publish.version "1.2.3-TEST" | ||
|
||
//> using dep "org.virtuslab::besom-core:0.0.1-beta" | ||
|
||
//> using options -java-output-version:11 | ||
|
||
package besom.languageplugin.test.resourceplugin.standard | ||
|
||
val customVal = 123 |
3 changes: 2 additions & 1 deletion
3
...sources/besom/custom-resource/plugin.json → ...om/api/fake-standard-resource/plugin.json
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,6 @@ | ||
{ | ||
"resource": true, | ||
"name": "random", | ||
"version": "4.3.1" | ||
"version": "4.3.1", | ||
"server": null | ||
} |
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