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

bmarwell pushed a change to branch MSCRIPTING-7
in repository https://gitbox.apache.org/repos/asf/maven-scripting-plugin.git


 discard 0066393  move binding doc to the right doc file
 discard c9e9ff9  binding the session and servers helper in binding context
     add 02e4621  [MSCRIPTING-5] Links on about page not working
     add 314fd6e  [MSCRIPTING-6] add missing download page
     add 028a900  [MSCRIPTING-8] Support scriptResource
     add 34e0a68  add Reproducible Builds badge
     add 571a3a9  Update Jenkinsfile to run default pieline
     add 62ed678  Bump maven-shared-utils from 3.2.1 to 3.3.3
     add 8f24d06  Merge pull request #6 from 
apache/dependabot/maven/org.apache.maven.shared-maven-shared-utils-3.3.3
     add 6409b52  Disable merge button
     add 4985493  update parent POM to 39 (#9)
     add d2b6fdc  Auto-link MSCRIPTING Jira
     add 15fd4fc  Bump junit from 4.12 to 4.13.1
     add 8593d80  [MSCRIPTING-14] add requirements history (#10)
     add 7210b3b  [MSCRIPTING-15] require maven 3.6.3 (#11)
     add fab200f  (chore) add common workflows (#14)
     add f5030b9  [MSCRIPTING-16] Update parent to v41 (#15)
     add 3d3e30a  (chore) bump to 3.1.0 (#16)
     add 23e8177  (chore) fix release drafter (#17)
     add e16c14d  (chore) configure dependabot (#18)
     add 1e4125b  [MSCRIPTING-13] remove unused dependencies (#24)
     add de221f2  Bump org.codehaus.mojo:mrm-maven-plugin from 1.3.0 to 1.6.0 
(#19)
     add d8742f2  [MSCRIPTING-9] Support java scripting (#25)
     add b6b61e0  [MSCRIPTING-7] binding the session and servers helper in 
binding context
     add 9ec5e1b  [MSCRIPTING-7] move binding doc to the right doc file

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0066393)
            \
             N -- N -- N   refs/heads/MSCRIPTING-7 (9ec5e1b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |  11 +
 .asf.yaml => .github/dependabot.yml                |  30 +-
 .../download.cgi => .github/release-drafter.yml    |  11 +-
 .../workflows/maven-verify.yml                     |  19 +-
 .../workflows/release-drafter.yml                  |  24 +-
 .gitignore                                         |   1 +
 Jenkinsfile                                        |   2 +-
 README.md                                          |   3 +-
 pom.xml                                            | 330 +++++++++++---------
 .../mrm/repository/mscripting-8.jar/script.groovy  |   6 +-
 .../mrm/repository/mscripting-8.pom}               |  17 +-
 src/it/{ => mrm}/settings.xml                      |  27 +-
 .../{ => projects}/groovy-script-file-name/pom.xml |   0
 .../groovy-script-file-name/test.groov             |   0
 src/it/{ => projects}/groovy-script-file/pom.xml   |   0
 .../{ => projects}/groovy-script-file/test.groovy  |   0
 .../groovy-script-resource}/pom.xml                | 111 +++----
 src/it/{ => projects}/groovy-script/pom.xml        |   0
 .../java-script}/pom.xml                           |  15 +-
 .../java-script/verify.bsh}                        |  47 +--
 .../plugins/scripting/AbstractScriptEvaluator.java | 139 ++++-----
 .../apache/maven/plugins/scripting/EvalMojo.java   | 251 ++++++++-------
 .../plugins/scripting/FileScriptEvaluator.java     | 222 +++++++-------
 .../plugins/scripting/ResourceScriptEvaluator.java | 113 +++++++
 .../plugins/scripting/StringScriptEvaluator.java   | 172 +++++------
 .../UnsupportedScriptEngineException.java          |  13 +-
 .../maven/plugins/scripting/binding/Servers.java   |  43 ++-
 .../scripting/engine/ContextAwareEngine.java       |  49 +++
 .../maven/plugins/scripting/engine/JavaEngine.java | 339 +++++++++++++++++++++
 .../scripting/engine/JavaEngineFactory.java        | 129 ++++++++
 .../services/javax.script.ScriptEngineFactory      |  19 ++
 .../jsr223-script-engines.md.vm => fml/faq.fml}    |  15 +-
 src/site/markdown/index.md.vm                      |   8 +-
 src/site/markdown/jsr223-script-engines.md.vm      |  21 +-
 src/site/markdown/usage.md.vm                      |  99 ++++++
 src/site/xdoc/download.xml.vm                      | 126 ++++++++
 .../plugins/scripting/binding/ServersTest.java     | 209 +++++++------
 .../plugins/scripting/engine/JavaEngineTest.java   |  58 ++++
 38 files changed, 1840 insertions(+), 839 deletions(-)
 copy .asf.yaml => .github/dependabot.yml (74%)
 copy src/site/resources/download.cgi => .github/release-drafter.yml (77%)
 copy src/site/resources/download.cgi => .github/workflows/maven-verify.yml 
(77%)
 copy .travis.yml => .github/workflows/release-drafter.yml (77%)
 copy Jenkinsfile => src/it/mrm/repository/mscripting-8.jar/script.groovy (93%)
 copy src/{site/markdown/script-context.md => 
it/mrm/repository/mscripting-8.pom} (60%)
 rename src/it/{ => mrm}/settings.xml (64%)
 rename src/it/{ => projects}/groovy-script-file-name/pom.xml (100%)
 rename src/it/{ => projects}/groovy-script-file-name/test.groov (100%)
 rename src/it/{ => projects}/groovy-script-file/pom.xml (100%)
 copy src/it/{ => projects}/groovy-script-file/test.groovy (100%)
 copy src/it/{groovy-script => projects/groovy-script-resource}/pom.xml (83%)
 copy src/it/{ => projects}/groovy-script/pom.xml (100%)
 rename src/it/{groovy-script => projects/java-script}/pom.xml (77%)
 rename src/it/{groovy-script-file/test.groovy => 
projects/java-script/verify.bsh} (77%)
 create mode 100644 
src/main/java/org/apache/maven/plugins/scripting/ResourceScriptEvaluator.java
 create mode 100644 
src/main/java/org/apache/maven/plugins/scripting/engine/ContextAwareEngine.java
 create mode 100644 
src/main/java/org/apache/maven/plugins/scripting/engine/JavaEngine.java
 create mode 100644 
src/main/java/org/apache/maven/plugins/scripting/engine/JavaEngineFactory.java
 create mode 100644 
src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
 copy src/site/{markdown/jsr223-script-engines.md.vm => fml/faq.fml} (64%)
 create mode 100644 src/site/markdown/usage.md.vm
 create mode 100644 src/site/xdoc/download.xml.vm
 create mode 100644 
src/test/java/org/apache/maven/plugins/scripting/engine/JavaEngineTest.java

Reply via email to