From c7c0e28f00636593ce0042593ae990171391ef98 Mon Sep 17 00:00:00 2001 From: Jaco de Groot Date: Sat, 5 Jul 2014 20:21:52 +0200 Subject: [PATCH] Add support for jetty-maven-plugin --- README.md | 11 +- RELEASES.md | 8 +- core/src/main/resources/springCommon.xml | 725 ++++++++++-------- .../src/main/resources/springContextJBOSS.xml | 21 +- .../main/resources/springContextJETTYMVN.xml | 11 + .../main/resources/springContextTIBCOAMX.xml | 12 +- .../main/resources/springContextTOMCAT6.xml | 21 +- .../main/resources/springContextTOMCATBTM.xml | 21 +- core/src/main/resources/springContextWAS5.xml | 22 +- core/src/main/resources/springContextWAS6.xml | 22 +- .../main/resources/springEjbDeployment.xml | 147 ++-- core/src/main/resources/springJBOSS.xml | 10 +- core/src/main/resources/springJETTYMVN.xml | 43 ++ core/src/main/resources/springTIBCOAMX.xml | 23 +- core/src/main/resources/springTOMCAT6.xml | 30 +- .../resources/springUnmanagedDeployment.xml | 113 +-- core/src/main/resources/springWAS5.xml | 48 +- core/src/main/resources/springWAS6.xml | 79 +- example/pom.xml | 21 + 19 files changed, 810 insertions(+), 578 deletions(-) create mode 100644 core/src/main/resources/springContextJETTYMVN.xml create mode 100644 core/src/main/resources/springJETTYMVN.xml diff --git a/README.md b/README.md index f78840ab502..8a876fc0ce0 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,15 @@ IntelliJ Command-line interface ====================== +Initial: + - git clone https://github.com/ibissource/iaf -- cd iaf/core +- cd iaf - mvn +- cd example +- mvn jetty:run + +After modifying a project file: + +- ctrl-c +- cd .. ; mvn clean install ; cd example ; mvn jetty:run diff --git a/RELEASES.md b/RELEASES.md index 552748aea18..1a8abcc02e6 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -12,21 +12,23 @@ Upcoming [Commits](https://github.com/ibissource/iaf/compare/v5.5...HEAD) [![Build Status](https://travis-ci.org/ibissource/iaf.png)](https://travis-ci.org/ibissource/iaf) -- ... +- Add support for jetty-maven-plugin 5.6 --- -[Commits](https://github.com/ibissource/iaf/compare/v5_5...v5_6) +[Commits](https://github.com/ibissource/iaf/compare/v5.5...v5.6) [![Build Status](https://travis-ci.org/ibissource/iaf.png?branch=v5.6)](https://travis-ci.org/ibissource/iaf) - Move missing errorStorage warning from MessageKeeper (at adapter level) and logfile to ConfigurationWarnings (top of console main page). - Replace (broken) enforceMQCompliancy on JmsSender with MQSender. - Remove FXF 1 and 2 support. +- Fix Ibis name and DTAP stage in Bootstrap theme. - Add theme switch button. - Add stream support to FilePipe and FileSender. +- Add permission rules to FileViewerServlet. - Added the possibility for enabling LDAP authentication and authorization without a deployment descriptor - Added functionality for unit testing (TestTool) - Added some MS SQL support @@ -45,7 +47,7 @@ Upcoming 5.5 --- -[Commits](https://github.com/ibissource/iaf/compare/v5_4...v5_5) +[Commits](https://github.com/ibissource/iaf/compare/v5.4...v5.5) [![Build Status](https://travis-ci.org/ibissource/iaf.png?branch=v5.5)](https://travis-ci.org/ibissource/iaf) - Also when not transacted don't retrow exception caught in JMS listener (caused connection to be closed and caused possible other threads on the same listener to experience "javax.jms.IllegalStateException: Consumer closed"). diff --git a/core/src/main/resources/springCommon.xml b/core/src/main/resources/springCommon.xml index e52b2523d42..4dd0996a506 100644 --- a/core/src/main/resources/springCommon.xml +++ b/core/src/main/resources/springCommon.xml @@ -1,323 +1,410 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - nl.nn.adapterframework.jdbc.dbms.OracleDbmsSupport - nl.nn.adapterframework.jdbc.dbms.MsSqlServerDbmsSupport - nl.nn.adapterframework.jdbc.dbms.Db2DbmsSupport - nl.nn.adapterframework.jdbc.dbms.Db2DbmsSupport - - - + xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + default-autowire="byName" + xsi:schemaLocation="http://www.springframework.org/schema/beans xml/xsd/spring-beans-2.5.xsd" + > + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nl.nn.adapterframework.jdbc.dbms.OracleDbmsSupport + nl.nn.adapterframework.jdbc.dbms.MsSqlServerDbmsSupport + nl.nn.adapterframework.jdbc.dbms.Db2DbmsSupport + nl.nn.adapterframework.jdbc.dbms.Db2DbmsSupport + + + diff --git a/core/src/main/resources/springContextJBOSS.xml b/core/src/main/resources/springContextJBOSS.xml index 7dd4926a12f..a96d67a7ae6 100644 --- a/core/src/main/resources/springContextJBOSS.xml +++ b/core/src/main/resources/springContextJBOSS.xml @@ -1,14 +1,11 @@ - - - - - - - - + + + + + diff --git a/core/src/main/resources/springContextJETTYMVN.xml b/core/src/main/resources/springContextJETTYMVN.xml new file mode 100644 index 00000000000..daa48f305e7 --- /dev/null +++ b/core/src/main/resources/springContextJETTYMVN.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/core/src/main/resources/springContextTIBCOAMX.xml b/core/src/main/resources/springContextTIBCOAMX.xml index e7e6b28331d..b8720b585fe 100644 --- a/core/src/main/resources/springContextTIBCOAMX.xml +++ b/core/src/main/resources/springContextTIBCOAMX.xml @@ -1,13 +1,11 @@ - - + - - diff --git a/core/src/main/resources/springContextTOMCAT6.xml b/core/src/main/resources/springContextTOMCAT6.xml index 7da604717d5..93fcb0460a8 100644 --- a/core/src/main/resources/springContextTOMCAT6.xml +++ b/core/src/main/resources/springContextTOMCAT6.xml @@ -1,14 +1,11 @@ - - - - - - - - + + + + + diff --git a/core/src/main/resources/springContextTOMCATBTM.xml b/core/src/main/resources/springContextTOMCATBTM.xml index 902a34c2405..1de5e3228f1 100644 --- a/core/src/main/resources/springContextTOMCATBTM.xml +++ b/core/src/main/resources/springContextTOMCATBTM.xml @@ -1,14 +1,11 @@ - - - - - - - - + + + + + diff --git a/core/src/main/resources/springContextWAS5.xml b/core/src/main/resources/springContextWAS5.xml index b8e2ca5a879..ba257a98a79 100644 --- a/core/src/main/resources/springContextWAS5.xml +++ b/core/src/main/resources/springContextWAS5.xml @@ -1,14 +1,12 @@ - - - - - - - - + + + + + + diff --git a/core/src/main/resources/springContextWAS6.xml b/core/src/main/resources/springContextWAS6.xml index 434cf9da39d..ab29fca9c48 100644 --- a/core/src/main/resources/springContextWAS6.xml +++ b/core/src/main/resources/springContextWAS6.xml @@ -1,14 +1,12 @@ - - - - - - - - + + + + + + diff --git a/core/src/main/resources/springEjbDeployment.xml b/core/src/main/resources/springEjbDeployment.xml index 2b3739a96f0..7de4d73803a 100644 --- a/core/src/main/resources/springEjbDeployment.xml +++ b/core/src/main/resources/springEjbDeployment.xml @@ -1,64 +1,91 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - diff --git a/core/src/main/resources/springJBOSS.xml b/core/src/main/resources/springJBOSS.xml index 3a97084c35d..313e0b43b78 100644 --- a/core/src/main/resources/springJBOSS.xml +++ b/core/src/main/resources/springJBOSS.xml @@ -10,11 +10,11 @@ " > - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/src/main/resources/springTIBCOAMX.xml b/core/src/main/resources/springTIBCOAMX.xml index 8e6469e15ee..d0138326d0d 100644 --- a/core/src/main/resources/springTIBCOAMX.xml +++ b/core/src/main/resources/springTIBCOAMX.xml @@ -1,22 +1,29 @@ + xsi:schemaLocation= + " + http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd + http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd + " + > - + - + autowire="byName" + > diff --git a/core/src/main/resources/springTOMCAT6.xml b/core/src/main/resources/springTOMCAT6.xml index cfe88649bbb..648e161354e 100644 --- a/core/src/main/resources/springTOMCAT6.xml +++ b/core/src/main/resources/springTOMCAT6.xml @@ -10,17 +10,18 @@ " > - - - - - + + @@ -28,13 +29,18 @@ - + + + diff --git a/core/src/main/resources/springUnmanagedDeployment.xml b/core/src/main/resources/springUnmanagedDeployment.xml index bbeff7cdd37..427581935ce 100644 --- a/core/src/main/resources/springUnmanagedDeployment.xml +++ b/core/src/main/resources/springUnmanagedDeployment.xml @@ -1,49 +1,70 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/src/main/resources/springWAS5.xml b/core/src/main/resources/springWAS5.xml index 82d6f068e1b..cd66e273046 100644 --- a/core/src/main/resources/springWAS5.xml +++ b/core/src/main/resources/springWAS5.xml @@ -1,26 +1,32 @@ - + - - - - - - - - - - - - + + + + + + + + + diff --git a/core/src/main/resources/springWAS6.xml b/core/src/main/resources/springWAS6.xml index a9848bff044..de0a28173dd 100644 --- a/core/src/main/resources/springWAS6.xml +++ b/core/src/main/resources/springWAS6.xml @@ -1,40 +1,47 @@ - + - - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/example/pom.xml b/example/pom.xml index 370c6e5ea0a..b2d8b376958 100644 --- a/example/pom.xml +++ b/example/pom.xml @@ -43,4 +43,25 @@ runtime + + + + org.eclipse.jetty + jetty-maven-plugin + 9.0.7.v20131107 + + + + application.server.type + JETTYMVN + + + log.dir + ${java.io.tmpdir} + + + + + +