Skip to content

Commit

Permalink
KEYCLOAK-7343 Correct the paths defined for PME's jsonUpdate
Browse files Browse the repository at this point in the history
Further to KEYCLOAK-7193 and KEYCLOAK-6909.

prod-arguments.json defines a couple PME jsonUpdate paths. It turns out these
paths are resolved relative to the pom location, not the current working
directory, so ../ must be added to compensate for the maven stuff being located
in a subdirectory.
  • Loading branch information
ASzc committed May 14, 2018
1 parent dfe8590 commit e327f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product/prod-arguments.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencyManagement": "org.jboss.eap:jboss-eap-parent:$EAP_VERSION",
"dependencyRelocations.org.wildfly:@org.jboss.eap:": "$EAP_VERSION",
"dependencyExclusion.org.jboss:jboss-parent@*": "19.0.0.redhat-2",
"jsonUpdate": "package.json:$.devDependencies.keycloak-admin-client:^0.12.0,package.json:$.scripts.prepublish:"
"jsonUpdate": "../package.json:$.devDependencies.keycloak-admin-client:^0.12.0,../package.json:$.scripts.prepublish:"
}
}
}

0 comments on commit e327f96

Please sign in to comment.