-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use jsii-java-runtime as a devDependency (#158)
Instead of looking up the maven repo of jsii-java-runtime in the repo structure, define it as a devDependency and attempt to `require` it. If it exists, it adds the local maven-repo to the user.xml maven settings during build. Otherwise, it will just download from maven. Also, adds a test to jsii-pacmak that recursively builds the entire jsii-calc stack in all languages.
- Loading branch information
Elad Ben-Israel
authored
Aug 7, 2018
1 parent
64ced3f
commit eb291b9
Showing
4 changed files
with
10 additions
and
11 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
outdir=$(mktemp -d) | ||
bin/jsii-pacmak -o ${outdir} --recurse node_modules/jsii-calc -vv |