Fixing Wildfly deployment notes
Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/d2c195c8 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/d2c195c8 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/d2c195c8 Branch: refs/heads/2_0_X Commit: d2c195c89219f235f07764e075d108e3b004f3ba Parents: 500ab90 Author: Francesco Chicchiriccò <[email protected]> Authored: Tue Nov 15 16:23:11 2016 +0100 Committer: Francesco Chicchiriccò <[email protected]> Committed: Tue Nov 15 16:23:11 2016 +0100 ---------------------------------------------------------------------- .../systemadministration/javaeecontainer.adoc | 63 +++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/d2c195c8/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc index 813d52e..dae0c79 100644 --- a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc +++ b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc @@ -76,15 +76,76 @@ provides a datasource named `jdbc/MasterDataSource`. Replace +[source,xml] .... - classpath*:/*Context.xml + <dependency> + <groupId>org.apache.syncope.core</groupId> + <artifactId>syncope-core-persistence-jpa</artifactId> + </dependency> .... with +[source,xml] +.... + <dependency> + <groupId>org.apache.syncope.core</groupId> + <artifactId>syncope-core-persistence-jpa</artifactId> + <exclusions> + <exclusion> + <groupId>org.apache.bval</groupId> + <artifactId>bval-jsr</artifactId> + </exclusion> + </exclusions> + </dependency> +.... + +in `core/pom.xml`. + +Add + +[source,xml] +.... + <dependency> + <groupId>javax.xml.ws</groupId> + <artifactId>jaxws-api</artifactId> + <version>2.2.11</version> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-core</artifactId> + <version>${cxf.version}</version> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-transports-http</artifactId> + <version>${cxf.version}</version> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-ws-policy</artifactId> + <version>${cxf.version}</version> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-wsdl</artifactId> + <version>${cxf.version}</version> + </dependency> +.... + +as additional dependencies in `core/pom.xml`, `console/pom.xml` and `enduser/pom.xml`. + +Replace + .... classpath*:/*Context.xml +.... + +with + +.... /WEB-INF/classes/restCXFContext.xml + classpath*:/*Context.xml .... in `core/src/main/webapp/WEB-INF/web.xml`.
