You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2021/12/08 16:24:32 UTC

[tomee] branch master updated (418674f -> 7635d61)

This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git.


    from 418674f  TOMEE-3819 Apache Tomcat 9.0.56 dependency upgrade
     add 91983b4  TOMEE-3811 - Provide E-Mail Example with Velocity
     add 12b5941  Merge remote-tracking branch 'origin/master' into TOMEE-3811-TOMEE-3811_-_Provide_E-Mail_Example_with_Velocity
     add 7ecc81c  Merge remote-tracking branch 'origin/master' into TOMEE-3811-TOMEE-3811_-_Provide_E-Mail_Example_with_Velocity
     add bc4815c  Merge remote-tracking branch 'origin/master' into TOMEE-3811-TOMEE-3811_-_Provide_E-Mail_Example_with_Velocity
     new 7635d61  TOMEE-3811 - Provide E-Mail Example with Velocity

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/javamail-velocity/README.adoc             | 436 +++++++++++++++++++++
 .../pom.xml                                        |  94 ++---
 .../src/main/java/org/superbiz/EMail.java}         |  61 +--
 .../main/java/org/superbiz/EMailServiceImpl.java   | 146 +++++++
 .../src/main/java/org/superbiz/MailType.java}      |  22 +-
 .../src/main/resources/resources.xml.template      |  32 +-
 .../test/java/org/superbiz/EMailServiceTest.java   | 152 +++++++
 .../javamail-velocity/src/test/resources/log4j.xml |  37 +-
 .../resources/templates/email-html-template.vm     |   6 +-
 examples/pom.xml                                   |   1 +
 10 files changed, 867 insertions(+), 120 deletions(-)
 create mode 100644 examples/javamail-velocity/README.adoc
 copy examples/{junit5-arquillian-multiple-tomee => javamail-velocity}/pom.xml (65%)
 copy examples/{mp-custom-healthcheck/src/main/java/org/superbiz/WeatherApiStatus.java => javamail-velocity/src/main/java/org/superbiz/EMail.java} (50%)
 create mode 100644 examples/javamail-velocity/src/main/java/org/superbiz/EMailServiceImpl.java
 copy examples/{projectstage-demo/src/main/java/org/superbiz/Manager.java => javamail-velocity/src/main/java/org/superbiz/MailType.java} (76%)
 copy arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/resources/org/apache/openejb/arquillian/tests/jsp/web.xml => examples/javamail-velocity/src/main/resources/resources.xml.template (58%)
 create mode 100644 examples/javamail-velocity/src/test/java/org/superbiz/EMailServiceTest.java
 copy arquillian/arquillian-tomee-tests/arquillian-tomee-config-tests/src/test/resources/tomee-remote/conf/Catalina/localhost/ROOT.xml => examples/javamail-velocity/src/test/resources/log4j.xml (53%)
 copy arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/resources/org/apache/openejb/arquillian/tests/tomcat/contextxml/do_not_fail_on_write.xml => examples/javamail-velocity/src/test/resources/templates/email-html-template.vm (90%)

[tomee] 01/01: TOMEE-3811 - Provide E-Mail Example with Velocity

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 7635d61372dc9f79808e050c0dc406e9e4758eb0
Merge: 418674f bc4815c
Author: Richard Zowalla <13...@users.noreply.github.com>
AuthorDate: Wed Dec 8 17:24:14 2021 +0100

    TOMEE-3811 - Provide E-Mail Example with Velocity

 examples/javamail-velocity/README.adoc             | 436 +++++++++++++++++++++
 examples/javamail-velocity/pom.xml                 | 156 ++++++++
 .../src/main/java/org/superbiz/EMail.java          |  55 +++
 .../main/java/org/superbiz/EMailServiceImpl.java   | 146 +++++++
 .../src/main/java/org/superbiz/MailType.java       |  32 ++
 .../src/main/resources/resources.xml.template      |  34 ++
 .../test/java/org/superbiz/EMailServiceTest.java   | 152 +++++++
 .../javamail-velocity/src/test/resources/log4j.xml |  39 ++
 .../resources/templates/email-html-template.vm     |  22 ++
 examples/pom.xml                                   |   1 +
 10 files changed, 1073 insertions(+)