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/d675e1b6 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/d675e1b6 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/d675e1b6 Branch: refs/heads/master Commit: d675e1b6daee9bb7c8f4b5a38bb723fc0a0cb993 Parents: 93ee7f0 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:21 2016 +0100 ---------------------------------------------------------------------- .../systemadministration/javaeecontainer.adoc | 63 +++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/d675e1b6/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 3a2181f..c2e7f58 100644 --- a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc +++ b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc @@ -74,15 +74,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`.
