-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added run task. Ran into a bug where an xtcRun task assumes it must h…
…ave xtc modules built by its project on the module path, when it can really be an aggregator of subprojects, or some other valid run job similar to that.
- Loading branch information
Showing
6 changed files
with
85 additions
and
29 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,7 +1,13 @@ | ||
group=platform.xqiz.it | ||
version=0.1.0 | ||
|
||
xtcVersion=0.4.4 | ||
xtcVersion=0.4.41 | ||
|
||
# NOTE: This property would not live inside your repository for a production case, but | ||
# should be passed through a Gradle command line property "-Porg.xtclang.platform.password=<password>>", | ||
# placed in $GRADLE_USER_HOME/gradle.properties, or used a secret in an environment variable (for example | ||
# in GitHub runners, or other CI/CD tasks). | ||
org.xtclang.platform.password=fethemligt | ||
|
||
org.gradle.parallel=true | ||
org.gradle.caching=true |
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,14 +1,20 @@ | ||
#TODO | ||
#https://github.com/node-gradle/gradle-node-plugin | ||
[versions] | ||
node = "7.0.1" | ||
xdk = "0.4.4" | ||
npm = "10.2.0" | ||
yarn = "1.22.21" | ||
xdk = "0.4.41" | ||
tasktree = "2.1.1" | ||
|
||
[plugins] | ||
node = { id = "com.github.node-gradle.node", version.ref = "node" } | ||
xtc = { id = "org.xtclang.xtc-plugin", version.ref = "xdk" } | ||
|
||
# taskTree is a helper that we can use to view task dependencies | ||
# for example: ./gradlew run taskTree | ||
tasktree = { id = "com.dorongold.task-tree", version.ref = "tasktree" } | ||
|
||
[libraries] | ||
xdk = { group = "org.xtclang", name = "xdk", version.ref = "xdk" } | ||
|
||
[bundles] | ||
# No bundles so far |
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