[stapler] branch master updated (a776196 -> 4532c74)

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Sun Sep 7 21:21:06 UTC 2014


This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository stapler.

      from  a776196   Replaced the patches disabling the jruby and jrebel modules with ignore rules in debian/libstapler-java.poms
      adds  4f3a45a   Imported Upstream version 1.223
       new  3b7f3d5   Merge tag 'upstream/1.223'
       new  6621edd   Refreshed the patches Added a dependency on libjsr305-java and removed 0007-Remove-use-of-findbugs.patch
      adds  c3fd34a   Imported Upstream version 1.224
       new  c0e5208   Merge tag 'upstream/1.224'
       new  ca672af   Refreshed the patches
       new  97abf2e   Depend on libjenkins-dom4j-java >= 1.6.1-jenkins-4
       new  e60639b   Fixed the short name of the licenses in debian/copyright
       new  4532c74   Upload to unstable

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


Summary of changes:
 core/.cvsignore                                    |   7 -
 core/example/.cvsignore                            |   1 -
 core/maven-example/.cvsignore                      |   4 -
 core/pom.xml                                       |  18 +-
 .../java/org/kohsuke/stapler/AncestorImpl.java     |  17 +-
 .../java/org/kohsuke/stapler/BindInterceptor.java  |  27 ++-
 .../org/kohsuke/stapler/CachingScriptLoader.java   |  15 +-
 .../java/org/kohsuke/stapler/ClassDescriptor.java  |  35 ++--
 .../java/org/kohsuke/stapler/DataBoundSetter.java  |  42 +++++
 .../main/java/org/kohsuke/stapler/Function.java    |  13 +-
 .../java/org/kohsuke/stapler/HttpRedirect.java     |   6 +-
 .../org/kohsuke/stapler/HttpResponseRenderer.java  |  17 +-
 .../main/java/org/kohsuke/stapler/MetaClass.java   |  34 +++-
 .../main/java/org/kohsuke/stapler/RequestImpl.java | 151 ++++++++++++++---
 .../java/org/kohsuke/stapler/ResponseImpl.java     |  10 +-
 .../java/org/kohsuke/stapler/SingleLinkedList.java |  72 ++++++++
 .../src/main/java/org/kohsuke/stapler/Stapler.java |  77 ++++++++-
 .../java/org/kohsuke/stapler/StaplerRequest.java   |  29 +++-
 .../java/org/kohsuke/stapler/StaplerResponse.java  |   6 +-
 core/src/main/java/org/kohsuke/stapler/WebApp.java |   9 +
 .../stapler/interceptor/JsonOutputFilter.java      |   5 +-
 .../main/java/org/kohsuke/stapler/lang/Klass.java  |   9 +-
 .../org/kohsuke/stapler/lang/KlassNavigator.java   |  26 +++
 .../java/org/kohsuke/stapler/lang/MethodRef.java   |  35 ++++
 .../org/kohsuke/stapler/ClassDescriptorTest.java   |   1 +
 .../java/org/kohsuke/stapler/DataBindingTest.java  | 186 ++++++++++++++++++++-
 .../stapler/interceptor/JsonOutputFilterTest.java  |   4 +-
 debian/changelog                                   |  10 +-
 debian/control                                     |   3 +-
 debian/copyright                                   |  10 +-
 debian/maven.ignoreRules                           |   3 +
 debian/maven.rules                                 |   4 +-
 debian/patches/0001-beanutils18-compat.patch       |   4 +-
 debian/patches/0007-Remove-use-of-findbugs.patch   | 128 --------------
 .../patches/0008-Drop-use-of-custom-doklet.patch   |   4 +-
 debian/patches/series                              |   1 -
 groovy/pom.xml                                     |   2 +-
 .../kohsuke/stapler/jelly/groovy/GroovyFacet.java  |  16 +-
 jelly/pom.xml                                      |  22 ++-
 .../kohsuke/stapler/jelly/CallTagLibScript.java    |   1 +
 .../java/org/kohsuke/stapler/jelly/IncludeTag.java |   1 +
 .../stapler/jelly/JellyClassLoaderTearOff.java     |  18 +-
 .../stapler/jelly/TagLibNamespaceExportTest.java   |  22 +++
 .../jelly/TagLibNamespaceExportTest/index.jelly    |  16 ++
 .../jelly/TagLibNamespaceExportTest/sub.jelly      |   5 +
 .../TagLibNamespaceExportTest/taglib/tagfile.jelly |   5 +
 .../jelly/TagLibNamespaceExportTest/taglib}/taglib |   0
 jrebel/pom.xml                                     |   2 +-
 jruby/pom.xml                                      |   2 +-
 .../stapler/jelly/jruby/RubyKlassNavigator.java    |  13 ++
 .../kohsuke/stapler/jelly/jruby/RubyMethodRef.java |  38 +++++
 jsp/pom.xml                                        |   2 +-
 pom.xml                                            |  76 ++++++---
 53 files changed, 958 insertions(+), 306 deletions(-)
 delete mode 100644 core/.cvsignore
 delete mode 100644 core/example/.cvsignore
 delete mode 100644 core/maven-example/.cvsignore
 create mode 100644 core/src/main/java/org/kohsuke/stapler/DataBoundSetter.java
 create mode 100644 core/src/main/java/org/kohsuke/stapler/SingleLinkedList.java
 create mode 100644 core/src/main/java/org/kohsuke/stapler/lang/MethodRef.java
 delete mode 100644 debian/patches/0007-Remove-use-of-findbugs.patch
 create mode 100644 jelly/src/test/java/org/kohsuke/stapler/jelly/TagLibNamespaceExportTest.java
 create mode 100644 jelly/src/test/resources/org/kohsuke/stapler/jelly/TagLibNamespaceExportTest/index.jelly
 create mode 100644 jelly/src/test/resources/org/kohsuke/stapler/jelly/TagLibNamespaceExportTest/sub.jelly
 create mode 100644 jelly/src/test/resources/org/kohsuke/stapler/jelly/TagLibNamespaceExportTest/taglib/tagfile.jelly
 copy {core/src/main/resources/org/kohsuke/stapler/framework/io/LargeText => jelly/src/test/resources/org/kohsuke/stapler/jelly/TagLibNamespaceExportTest/taglib}/taglib (100%)
 create mode 100644 jruby/src/main/java/org/kohsuke/stapler/jelly/jruby/RubyMethodRef.java

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/stapler.git



More information about the pkg-java-commits mailing list