Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0AA37200BC0 for ; Tue, 15 Nov 2016 16:23:33 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 096A6160AD8; Tue, 15 Nov 2016 15:23:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 531A9160B03 for ; Tue, 15 Nov 2016 16:23:32 +0100 (CET) Received: (qmail 12080 invoked by uid 500); 15 Nov 2016 15:23:31 -0000 Mailing-List: contact commits-help@syncope.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@syncope.apache.org Delivered-To: mailing list commits@syncope.apache.org Received: (qmail 12071 invoked by uid 99); 15 Nov 2016 15:23:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Nov 2016 15:23:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 50A8DE0C0A; Tue, 15 Nov 2016 15:23:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: ilgrosso@apache.org To: commits@syncope.apache.org Date: Tue, 15 Nov 2016 15:23:33 -0000 Message-Id: <35b0515ac65c4f1aacfdaea69c44f0d4@git.apache.org> In-Reply-To: <1c1b961be8f54dc7894292e11826bf65@git.apache.org> References: <1c1b961be8f54dc7894292e11826bf65@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/4] syncope git commit: Fixing Wildfly deployment notes archived-at: Tue, 15 Nov 2016 15:23:33 -0000 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ò Authored: Tue Nov 15 16:23:11 2016 +0100 Committer: Francesco Chicchiriccò 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 + + org.apache.syncope.core + syncope-core-persistence-jpa + .... with +[source,xml] +.... + + org.apache.syncope.core + syncope-core-persistence-jpa + + + org.apache.bval + bval-jsr + + + +.... + +in `core/pom.xml`. + +Add + +[source,xml] +.... + + javax.xml.ws + jaxws-api + 2.2.11 + + + org.apache.cxf + cxf-core + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http + ${cxf.version} + + + org.apache.cxf + cxf-rt-ws-policy + ${cxf.version} + + + org.apache.cxf + cxf-rt-wsdl + ${cxf.version} + +.... + +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`.