-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix resource and requires path in MANIFEST.MF when file is in subfold…
…er (#644) The paths should contain slashes (and not backslashes) regardless of the OS
- Loading branch information
Showing
6 changed files
with
136 additions
and
4 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
56 changes: 56 additions & 0 deletions
56
internal/artifacts/testdata/assembly-sample/inner/uaa.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,56 @@ | ||
{ | ||
"xsappname" : "java-hello-world-i318495222", | ||
"scopes" : [ | ||
{ | ||
"name" : "$XSAPPNAME.Display", | ||
"description" : "display" | ||
}, | ||
{ | ||
"name" : "$XSAPPNAME.Create", | ||
"description" : "create" | ||
}, | ||
{ | ||
"name" : "$XSAPPNAME.Delete", | ||
"description" : "delete" | ||
} | ||
], | ||
"attributes" : [ | ||
{ | ||
"name" : "Country", | ||
"description" : "Country", | ||
"valueType" : "s" | ||
}, | ||
{ | ||
"name" : "CostCenter", | ||
"description" : "CostCenter", | ||
"valueType" : "s" | ||
|
||
} | ||
], | ||
"role-templates": [ | ||
{ | ||
"name" : "Viewer", | ||
"description" : "View all books", | ||
"scope-references" : [ | ||
"$XSAPPNAME.Display", | ||
"$XSAPPNAME.Create", | ||
"$XSAPPNAME.Delete" | ||
], | ||
"attribute-references" : [ | ||
"Country" | ||
] | ||
}, | ||
{ | ||
"name" : "Editor", | ||
"description" : "Edit and Delete the books", | ||
"scope-references" : [ | ||
"$XSAPPNAME.Create", | ||
"$XSAPPNAME.Delete" | ||
], | ||
"attribute-references" : [ | ||
"Country", | ||
"CostCenter" | ||
] | ||
} | ||
] | ||
} |
56 changes: 56 additions & 0 deletions
56
internal/artifacts/testdata/assembly-sample/inner/xs-security.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,56 @@ | ||
{ | ||
"xsappname" : "java-hello-world-i318495222", | ||
"scopes" : [ | ||
{ | ||
"name" : "$XSAPPNAME.Display", | ||
"description" : "display" | ||
}, | ||
{ | ||
"name" : "$XSAPPNAME.Create", | ||
"description" : "create" | ||
}, | ||
{ | ||
"name" : "$XSAPPNAME.Delete", | ||
"description" : "delete" | ||
} | ||
], | ||
"attributes" : [ | ||
{ | ||
"name" : "Country", | ||
"description" : "Country", | ||
"valueType" : "s" | ||
}, | ||
{ | ||
"name" : "CostCenter", | ||
"description" : "CostCenter", | ||
"valueType" : "s" | ||
|
||
} | ||
], | ||
"role-templates": [ | ||
{ | ||
"name" : "Viewer", | ||
"description" : "View all books", | ||
"scope-references" : [ | ||
"$XSAPPNAME.Display", | ||
"$XSAPPNAME.Create", | ||
"$XSAPPNAME.Delete" | ||
], | ||
"attribute-references" : [ | ||
"Country" | ||
] | ||
}, | ||
{ | ||
"name" : "Editor", | ||
"description" : "Edit and Delete the books", | ||
"scope-references" : [ | ||
"$XSAPPNAME.Create", | ||
"$XSAPPNAME.Delete" | ||
], | ||
"attribute-references" : [ | ||
"Country", | ||
"CostCenter" | ||
] | ||
} | ||
] | ||
} |
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