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

tjaalton-guest pushed a change to branch master
in repository glassfish-fastinfoset.

      from  4151abe   bump debhelper to 9, fix vcs-browser header
       new  1a0b6b3   use xz compression, exclude zip files instead of whole 
roundtrip-tests
      adds  d039944   Imported Upstream version 1.2.12
       new  307e1f4   Merge branch 'upstream'
       new  d09f260   use debian versioning for the jar/pom

The 3 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:
 debian/maven.publishedRules                        |   3 -
 debian/maven.rules                                 |   4 -
 debian/orig-tar.sh                                 |   8 +-
 roundtrip-tests/bin/allRoundtripTests.sh           |  14 +
 .../bin/cleandiff.sh                               |   1 -
 .../bin/domroundtrip_rtt                           |   6 +-
 .../bin/domsaxroundtrip_rtt                        |   6 +-
 roundtrip-tests/bin/env.sh                         |   8 +
 roundtrip-tests/bin/hudson-old.sh                  |  29 ++
 roundtrip-tests/bin/hudson.sh                      |  28 ++
 roundtrip-tests/bin/removeEmptyDir.sh              |  27 ++
 roundtrip-tests/bin/removeUnusedFiles.sh           |  88 ++++++
 roundtrip-tests/bin/removeXML1_1.csh               |  11 +
 roundtrip-tests/bin/report                         |   2 +
 roundtrip-tests/bin/roundtripTest.sh               |  57 ++++
 .../bin/saxroundtrip_rtt                           |   8 +-
 .../bin/saxstaxdiff_rtt                            |   6 +-
 .../bin/staxroundtrip_rtt                          |   2 +
 roundtrip-tests/bin/xercesTest.sh                  |  51 ++++
 roundtrip-tests/bin/xercesTestBase.csh             |  10 +
 roundtrip-tests/build-without-nb.xml               |  74 +++++
 {samples => roundtrip-tests}/pom.xml               |  10 +-
 roundtrip-tests/readme.txt                         |  33 +++
 roundtrip-tests/report/readme                      |   1 +
 .../roundtriptests/AllRoundTripTest.java           |  95 +++++++
 .../xml/fastinfoset/roundtriptests/FileUtils.java  |  63 +++++
 .../roundtriptests/RoundTripReport.java            | 314 +++++++++++++++++++++
 .../roundtriptests/SingleRountTripTest.java        |  90 ++++++
 .../roundtriptests/rtt/DOMRoundTripRtt.java        |  59 ++++
 .../roundtriptests/rtt/DOMSAXRoundTripRtt.java     |  59 ++++
 .../roundtriptests/rtt/RoundTripRtt.java           | 212 ++++++++++++++
 .../roundtriptests/rtt/SAXRoundTripRtt.java        |  59 ++++
 .../roundtriptests/rtt/SAXStAXDiffRtt.java         |  57 ++++
 .../roundtriptests/rtt/StAXRoundTripRtt.java       |  60 ++++
 34 files changed, 1529 insertions(+), 26 deletions(-)
 create mode 100755 roundtrip-tests/bin/allRoundtripTests.sh
 copy fastinfoset/bin/saxroundtripdir => roundtrip-tests/bin/cleandiff.sh (67%)
 copy fastinfoset/bin/domroundtrip => roundtrip-tests/bin/domroundtrip_rtt (58%)
 copy fastinfoset/bin/domsaxroundtrip => 
roundtrip-tests/bin/domsaxroundtrip_rtt (61%)
 create mode 100755 roundtrip-tests/bin/env.sh
 create mode 100644 roundtrip-tests/bin/hudson-old.sh
 create mode 100755 roundtrip-tests/bin/hudson.sh
 create mode 100755 roundtrip-tests/bin/removeEmptyDir.sh
 create mode 100755 roundtrip-tests/bin/removeUnusedFiles.sh
 create mode 100755 roundtrip-tests/bin/removeXML1_1.csh
 create mode 100755 roundtrip-tests/bin/report
 create mode 100755 roundtrip-tests/bin/roundtripTest.sh
 copy fastinfoset/bin/saxroundtrip => roundtrip-tests/bin/saxroundtrip_rtt (55%)
 copy fastinfoset/bin/saxstaxdiff => roundtrip-tests/bin/saxstaxdiff_rtt (55%)
 copy fastinfoset/bin/staxroundtrip => roundtrip-tests/bin/staxroundtrip_rtt 
(73%)
 create mode 100755 roundtrip-tests/bin/xercesTest.sh
 create mode 100755 roundtrip-tests/bin/xercesTestBase.csh
 create mode 100644 roundtrip-tests/build-without-nb.xml
 copy {samples => roundtrip-tests}/pom.xml (78%)
 create mode 100644 roundtrip-tests/readme.txt
 create mode 100644 roundtrip-tests/report/readme
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/AllRoundTripTest.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/FileUtils.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/RoundTripReport.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/SingleRountTripTest.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/rtt/DOMRoundTripRtt.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/rtt/DOMSAXRoundTripRtt.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/rtt/RoundTripRtt.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/rtt/SAXRoundTripRtt.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/rtt/SAXStAXDiffRtt.java
 create mode 100644 
roundtrip-tests/src/main/java/com/sun/xml/fastinfoset/roundtriptests/rtt/StAXRoundTripRtt.java

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

_______________________________________________
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to