[Git][java-team/resteasy][master-3.0] 3 commits: really add the cve fix

2021-10-19 Thread Timo Aaltonen (@tjaalton)


Timo Aaltonen pushed to branch master-3.0 at Debian Java Maintainers / resteasy


Commits:
22c5d54b by Timo Aaltonen at 2021-10-20T00:53:40+03:00
really add the cve fix

- - - - -
0f36a4a9 by Timo Aaltonen at 2021-10-20T00:57:16+03:00
Drop dependency on liblog4j1.2-java, and fix classpath to use 
tomcat9-el-api.jar.

- - - - -
a87c079c by Timo Aaltonen at 2021-10-20T00:58:27+03:00
releasing package resteasy3.0 version 3.0.26-3

- - - - -


6 changed files:

- debian/changelog
- debian/control
- debian/libresteasy3.0-java.classpath
- debian/maven.ignoreRules
- debian/maven.rules
- + 
debian/patches/0001-RESTEASY-2559-Improper-validation-of-response-header.patch


Changes:

=
debian/changelog
=
@@ -1,3 +1,10 @@
+resteasy3.0 (3.0.26-3) unstable; urgency=medium
+
+  * Drop dependency on liblog4j1.2-java, and fix classpath to use
+tomcat9-el-api.jar.
+
+ -- Timo Aaltonen   Wed, 20 Oct 2021 00:57:18 +0300
+
 resteasy3.0 (3.0.26-2) unstable; urgency=medium
 
   * control, maven.rules: Use tomcat for servlet & el-api, add


=
debian/control
=
@@ -23,7 +23,6 @@ Build-Depends-Indep:
  libjboss-logging-java,
  libjboss-logging-tools-java,
  libjettison-java,
- liblog4j1.2-java (>= 1.2.17),
  libmaven-install-plugin-java,
  libslf4j-java,
  libtomcat9-java,
@@ -36,7 +35,6 @@ Homepage: http://rest-easy.org
 Package: libresteasy3.0-java
 Architecture: all
 Depends: ${maven:Depends}, ${misc:Depends},
- liblog4j1.2-java
 Recommends: ${maven:OptionalDepends}
 Conflicts: libresteasy-java
 Replaces: libresteasy-java


=
debian/libresteasy3.0-java.classpath
=
@@ -1,4 +1,4 @@
-usr/share/java/resteasy-jaxrs.jar  /usr/share/java/log4j-1.2.jar 
/usr/share/java/slf4j-api.jar /usr/share/java/httpclient.jar 
/usr/share/java/commons-io.jar /usr/share/java/geronimo-annotation-1.3-spec.jar 
/usr/share/java/el-api-3.0.jar
+usr/share/java/resteasy-jaxrs.jar  /usr/share/java/slf4j-api.jar 
/usr/share/java/httpclient.jar /usr/share/java/commons-io.jar 
/usr/share/java/geronimo-annotation-1.3-spec.jar 
/usr/share/java/tomcat9-el-api.jar
 usr/share/java/resteasy-jaxb-provider.jar  /usr/share/java/jaxb-impl.jar
 usr/share/java/resteasy-jettison-provider.jar  /usr/share/java/jettison.jar
 usr/share/java/resteasy-jackson-provider.jar   
/usr/share/java/jackson-core-asl.jar /usr/share/java/jackson-mapper-asl.jar 
/usr/share/java/jackson-jaxrs.jar /usr/share/java/jackson-xc.jar


=
debian/maven.ignoreRules
=
@@ -34,3 +34,4 @@ org.jboss.el jboss-el * * * *
 org.mortbay.jetty maven-jetty-plugin * * * *
 org.springframework spring-webmvc * * * *
 org.glassfish javax.el * * * *
+log4j log4j * * * *


=
debian/maven.rules
=
@@ -11,7 +11,6 @@ org.codehaus.jettison jettison s/bundle/jar/ s/.*/debian/ * *
 org.yaml snakeyaml * s/.*/1.x/ * *
 com.sun.istack istack-commons-runtime * s/debian/2.17/ * *
 s/jboss/javassist/ javassist * s/.*/debian/ * *
-log4j log4j * s/1\.2\..*/1.2.x/ * *
 s/org.jboss.spec.javax.annotation/org.apache.geronimo.specs/ 
s/jboss-annotations-api_1.2_spec/geronimo-annotation_1.3_spec/ * s/.*/debian/ * 
*
 s/org.jboss.spec.javax.servlet/org.apache.tomcat/ 
s/jboss-servlet-api_3.1_spec/tomcat-servlet-api/ * s/.*/9.x/ * *
 s/org.jboss.spec.javax.el/org.apache.tomcat/ 
s/jboss-el-api_3.0_spec/tomcat-el-api/ * s/.*/9.x/ * *


=
debian/patches/0001-RESTEASY-2559-Improper-validation-of-response-header.patch
=
@@ -0,0 +1,47 @@
+From f58a22382e31c0c4b92e519fa84f701a606981ac Mon Sep 17 00:00:00 2001
+From: Bartosz Spyrko-Smietanko 
+Date: Thu, 16 Apr 2020 14:01:17 +0100
+Subject: [PATCH] [RESTEASY-2559] Improper validation of response header in
+ MediaTypeHeaderDelegate.java class
+
+---
+ .../plugins/delegates/MediaTypeHeaderDelegate.java |  1 +
+ .../test/mediatype/MediaTypeHeaderTest.java| 14 ++
+ 2 files changed, 15 insertions(+)
+ create mode 100644 
testsuite/unit-tests/src/test/java/org/jboss/resteasy/test/mediatype/MediaTypeHeaderTest.java
+
+diff --git 
a/resteasy-jaxrs/src/main/java/org/jboss/resteasy/plugins/delegates/MediaTypeHeaderDelegate.java
 
b/resteasy-jaxrs/src/main/java/org/jboss/resteasy/plugins/delegates/MediaTypeHeaderDelegate.java
+index db0b4d588..b31d4376e 100755
+--- 
a/resteasy-jaxrs/src/main/java/org/jboss/resteasy/plugins/delegates/MediaTypeHeaderDelegate.java
 
b/resteasy-jaxrs/src/main/java/org/jboss/resteasy/plugins/delegates/MediaTypeHeaderDelegate.java
+@@ -89,6 +89,7 @@ public class MediaTypeHeaderDelegate implements 
RuntimeDelegate.HeaderDelegate
+ case '[':
+ case ']':
+ case '=':
++ 

[Git][java-team/resteasy][master-3.0] 5 commits: control, maven.rules: Use tomcat for servlet & el-api, add libtomcat9-java to build-depends.

2020-12-16 Thread Timo Aaltonen


Timo Aaltonen pushed to branch master-3.0 at Debian Java Maintainers / resteasy


Commits:
99273077 by Timo Aaltonen at 2020-12-16T14:31:15+02:00
control, maven.rules: Use tomcat for servlet  el-api, add libtomcat9-java 
to build-depends.

- - - - -
2bb83c57 by Timo Aaltonen at 2020-12-16T14:45:26+02:00
control: Migrate to debhelper-compat, bump to 12.

- - - - -
5f2aacc1 by Timo Aaltonen at 2020-12-16T14:48:32+02:00
control: Bump policy to 4.5.1.

- - - - -
adf1dc52 by Timo Aaltonen at 2020-12-16T14:51:27+02:00
CVE-2020-1695: Improper validation of response header in 
MediaTypeHeaderDelegate.java class

- - - - -
a30ec946 by Timo Aaltonen at 2020-12-16T14:51:45+02:00
releasing package resteasy3.0 version 3.0.26-2

- - - - -


5 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/maven.rules
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,14 @@
+resteasy3.0 (3.0.26-2) unstable; urgency=medium
+
+  * control, maven.rules: Use tomcat for servlet & el-api, add
+libtomcat9-java to build-depends.
+  * control: Migrate to debhelper-compat, bump to 12.
+  * control: Bump policy to 4.5.1.
+  * CVE-2020-1695: Improper validation of response header in
+MediaTypeHeaderDelegate.java class
+
+ -- Timo Aaltonen   Wed, 16 Dec 2020 14:51:28 +0200
+
 resteasy3.0 (3.0.26-1) unstable; urgency=medium
 
   * New upstream release.


=
debian/compat deleted
=
@@ -1 +0,0 @@
-10


=
debian/control
=
@@ -3,7 +3,9 @@ Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

 Uploaders: Timo Aaltonen 
-Build-Depends: debhelper (>= 10), default-jdk, maven-debian-helper (>= 1.5)
+Build-Depends: debhelper-compat (= 12),
+ default-jdk,
+ maven-debian-helper (>= 1.5)
 Build-Depends-Indep:
  javahelper,
  junit4,
@@ -24,8 +26,9 @@ Build-Depends-Indep:
  liblog4j1.2-java (>= 1.2.17),
  libmaven-install-plugin-java,
  libslf4j-java,
+ libtomcat9-java,
  libyaml-snake-java
-Standards-Version: 3.9.8
+Standards-Version: 4.5.1
 Vcs-Git: https://salsa.debian.org/java-team/resteasy.git
 Vcs-Browser: https://salsa.debian.org/java-team/resteasy
 Homepage: http://rest-easy.org


=
debian/maven.rules
=
@@ -13,6 +13,6 @@ com.sun.istack istack-commons-runtime * s/debian/2.17/ * *
 s/jboss/javassist/ javassist * s/.*/debian/ * *
 log4j log4j * s/1\.2\..*/1.2.x/ * *
 s/org.jboss.spec.javax.annotation/org.apache.geronimo.specs/ 
s/jboss-annotations-api_1.2_spec/geronimo-annotation_1.3_spec/ * s/.*/debian/ * 
*
-s/org.jboss.spec.javax.servlet/javax.servlet/ 
s/jboss-servlet-api_3.1_spec/javax.servlet-api/ * s/.*/3.1/ * *
-s/org.jboss.spec.javax.el/javax.el/ s/jboss-el-api_3.0_spec/javax.el-api/ * 
s/.*/3.0/ * *
+s/org.jboss.spec.javax.servlet/org.apache.tomcat/ 
s/jboss-servlet-api_3.1_spec/tomcat-servlet-api/ * s/.*/9.x/ * *
+s/org.jboss.spec.javax.el/org.apache.tomcat/ 
s/jboss-el-api_3.0_spec/tomcat-el-api/ * s/.*/9.x/ * *
 s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.0_spec/javax.ws.rs-api/ * s/.*/debian/ * *


=
debian/patches/series
=
@@ -1,2 +1,3 @@
 03-jaxrs-api-compatibility.patch
 jaxb-api-compatibility.diff
+0001-RESTEASY-2559-Improper-validation-of-response-header.patch



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/-/compare/cbd685e03293a848b0bc61547b4a491e5f8cd17e...a30ec9463cbfb2a82b482f06affca19e46bd8398

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/-/compare/cbd685e03293a848b0bc61547b4a491e5f8cd17e...a30ec9463cbfb2a82b482f06affca19e46bd8398
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy] Pushed new tag debian/3.0.26-2

2020-12-16 Thread Timo Aaltonen


Timo Aaltonen pushed new tag debian/3.0.26-2 at Debian Java Maintainers / 
resteasy

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/-/tree/debian/3.0.26-2
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/tomcat9] Pushed new tag debian/9.0.37-3

2020-08-06 Thread Timo Aaltonen


Timo Aaltonen pushed new tag debian/9.0.37-3 at Debian Java Maintainers / 
tomcat9

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/tree/debian/9.0.37-3
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/tomcat9][master] 2 commits: control: Bump build-dep on bnd, drop bnd compat and re-export patches. (Closes: #964433)

2020-08-06 Thread Timo Aaltonen


Timo Aaltonen pushed to branch master at Debian Java Maintainers / tomcat9


Commits:
ede816f3 by Timo Aaltonen at 2020-08-06T18:59:08+03:00
control: Bump build-dep on bnd, drop bnd compat and re-export patches. (Closes: 
#964433)

- - - - -
c2eabfae by Timo Aaltonen at 2020-08-06T18:59:28+03:00
releasing package tomcat9 version 9.0.37-3

- - - - -


5 changed files:

- debian/changelog
- debian/control
- − debian/patches/0028-bnd-compatibility.patch
- − debian/patches/0029-fix-regression-in-bz64540.patch
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,10 @@
+tomcat9 (9.0.37-3) unstable; urgency=medium
+
+  * control: Bump build-dep on bnd, drop bnd compat and re-export patches.
+(Closes: #964433)
+
+ -- Timo Aaltonen   Thu, 06 Aug 2020 18:59:11 +0300
+
 tomcat9 (9.0.37-2) unstable; urgency=medium
 
   * d/p/0029-fix-regression-in-bz64540.patch: Re-export util.net.jsse


=
debian/control
=
@@ -7,7 +7,7 @@ Uploaders:
  Emmanuel Bourg 
 Build-Depends:
  ant-optional,
- bnd,
+ bnd (>= 5.0.1),
  debhelper-compat (= 12),
  default-jdk,
  javahelper,


=
debian/patches/0028-bnd-compatibility.patch deleted
=
@@ -1,21 +0,0 @@
-Description: Fixes the compatibility with the version of bnd in Debian
-Author: Emmanuel Bourg 
-Forwarded: not-needed
 a/res/bnd/build-defaults.bnd
-+++ b/res/bnd/build-defaults.bnd
-@@ -13,7 +13,7 @@
- # See the License for the specific language governing permissions and
- # limitations under the License.
- 
--Bundle-Version: ${version_cleanup;${version}}
-+Bundle-Version: ${version}
- 
- Specification-Title: Apache Tomcat
- Specification-Version: ${version.major.minor}
-@@ -28,4 +28,4 @@
- -includeresource.notice: 
META-INF/NOTICE;literal="${replace;${cat;../META-INF/default.notice};@YEAR@;${year}}\n"
- -includeresource.license: {META-INF/LICENSE=../META-INF/default.license}
- 
---noclassforname: true
-\ No newline at end of file
-+-noclassforname: true


=
debian/patches/0029-fix-regression-in-bz64540.patch deleted
=
@@ -1,35 +0,0 @@
-
-commit 13664621a2b4c9af09641a69438b2cf411238ca4
-Author: Mark Thomas 
-AuthorDate: Tue Jul 21 10:04:19 2020 +0100
-
-Fix regression in fix for BZ 64540.
-
-Export additional packages,

- res/bnd/tomcat-coyote.jar.tmp.bnd |  6 +++---
- webapps/docs/changelog.xml| 10 ++
- 2 files changed, 13 insertions(+), 3 deletions(-)
-
 a/res/bnd/tomcat-coyote.jar.tmp.bnd
-+++ b/res/bnd/tomcat-coyote.jar.tmp.bnd
-@@ -33,13 +33,14 @@ Export-Package: \
- org.apache.tomcat.util.http.parser,\
- org.apache.tomcat.util.log,\
- org.apache.tomcat.util.modeler,\
-+org.apache.tomcat.util.modeler.modules,\
- org.apache.tomcat.util.net,\
-+org.apache.tomcat.util.net.jsse,\
- org.apache.tomcat.util.net.openssl,\
- org.apache.tomcat.util.net.openssl.ciphers
- 
- -includepackage: \
- org.apache.tomcat.util.bcel,\
- org.apache.tomcat.util.http.fileupload.impl,\
--org.apache.tomcat.util.http.fileupload.util.mime,\
--org.apache.tomcat.util.modeler.modules,\
--org.apache.tomcat.util.net.jsse
-\ No newline at end of file
-+org.apache.tomcat.util.http.fileupload.util.mime
-+ 
-\ No newline at end of file


=
debian/patches/series
=
@@ -11,5 +11,3 @@
 0025-invalid-configuration-exit-status.patch
 0026-easymock4-compatibility.patch
 0027-java11-compilation.patch
-0028-bnd-compatibility.patch
-0029-fix-regression-in-bz64540.patch



View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/compare/1edeb31cf3ceb95bfe5b203e56ad0002c08839ac...c2eabfaed4a5106dc829b3a48526d1fa72948249

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/compare/1edeb31cf3ceb95bfe5b203e56ad0002c08839ac...c2eabfaed4a5106dc829b3a48526d1fa72948249
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/tomcat9][master] releasing package tomcat9 version 9.0.37-2

2020-07-28 Thread Timo Aaltonen


Timo Aaltonen pushed to branch master at Debian Java Maintainers / tomcat9


Commits:
1edeb31c by Timo Aaltonen at 2020-07-28T14:09:24+03:00
releasing package tomcat9 version 9.0.37-2

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,9 +1,9 @@
-tomcat9 (9.0.37-2) UNRELEASED; urgency=medium
+tomcat9 (9.0.37-2) unstable; urgency=medium
 
   * d/p/0029-fix-regression-in-bz64540.patch: Re-export util.net.jsse
 and util.modeler.modules. (Closes: #964433)
 
- -- Timo Aaltonen   Tue, 28 Jul 2020 12:24:09 +0300
+ -- Timo Aaltonen   Tue, 28 Jul 2020 14:09:13 +0300
 
 tomcat9 (9.0.37-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/commit/1edeb31cf3ceb95bfe5b203e56ad0002c08839ac

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/commit/1edeb31cf3ceb95bfe5b203e56ad0002c08839ac
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/tomcat9] Pushed new tag debian/9.0.37-2

2020-07-28 Thread Timo Aaltonen


Timo Aaltonen pushed new tag debian/9.0.37-2 at Debian Java Maintainers / 
tomcat9

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/tree/debian/9.0.37-2
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/tomcat9][master] d/p/0029-fix-regression-in-bz64540.patch: Re-export util.net.jsse and...

2020-07-28 Thread Timo Aaltonen


Timo Aaltonen pushed to branch master at Debian Java Maintainers / tomcat9


Commits:
1f139291 by Timo Aaltonen at 2020-07-28T12:24:49+03:00
d/p/0029-fix-regression-in-bz64540.patch: Re-export util.net.jsse and 
util.modeler.modules. (Closes: #964433)

- - - - -


3 changed files:

- debian/changelog
- + debian/patches/0029-fix-regression-in-bz64540.patch
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,10 @@
+tomcat9 (9.0.37-2) UNRELEASED; urgency=medium
+
+  * d/p/0029-fix-regression-in-bz64540.patch: Re-export util.net.jsse
+and util.modeler.modules. (Closes: #964433)
+
+ -- Timo Aaltonen   Tue, 28 Jul 2020 12:24:09 +0300
+
 tomcat9 (9.0.37-1) unstable; urgency=medium
 
   * New upstream release


=
debian/patches/0029-fix-regression-in-bz64540.patch
=
@@ -0,0 +1,35 @@
+
+commit 13664621a2b4c9af09641a69438b2cf411238ca4
+Author: Mark Thomas 
+AuthorDate: Tue Jul 21 10:04:19 2020 +0100
+
+Fix regression in fix for BZ 64540.
+
+Export additional packages,
+---
+ res/bnd/tomcat-coyote.jar.tmp.bnd |  6 +++---
+ webapps/docs/changelog.xml| 10 ++
+ 2 files changed, 13 insertions(+), 3 deletions(-)
+
+--- a/res/bnd/tomcat-coyote.jar.tmp.bnd
 b/res/bnd/tomcat-coyote.jar.tmp.bnd
+@@ -33,13 +33,14 @@ Export-Package: \
+ org.apache.tomcat.util.http.parser,\
+ org.apache.tomcat.util.log,\
+ org.apache.tomcat.util.modeler,\
++org.apache.tomcat.util.modeler.modules,\
+ org.apache.tomcat.util.net,\
++org.apache.tomcat.util.net.jsse,\
+ org.apache.tomcat.util.net.openssl,\
+ org.apache.tomcat.util.net.openssl.ciphers
+ 
+ -includepackage: \
+ org.apache.tomcat.util.bcel,\
+ org.apache.tomcat.util.http.fileupload.impl,\
+-org.apache.tomcat.util.http.fileupload.util.mime,\
+-org.apache.tomcat.util.modeler.modules,\
+-org.apache.tomcat.util.net.jsse
+\ No newline at end of file
++org.apache.tomcat.util.http.fileupload.util.mime
++ 
+\ No newline at end of file


=
debian/patches/series
=
@@ -12,3 +12,4 @@
 0026-easymock4-compatibility.patch
 0027-java11-compilation.patch
 0028-bnd-compatibility.patch
+0029-fix-regression-in-bz64540.patch



View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/commit/1f139291c3ca85b1354ddca336588977955abe78

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/tomcat9/-/commit/1f139291c3ca85b1354ddca336588977955abe78
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy] Pushed new tag debian/3.0.26-1

2018-12-05 Thread Timo Aaltonen
Timo Aaltonen pushed new tag debian/3.0.26-1 at Debian Java Maintainers / 
resteasy

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/tree/debian/3.0.26-1
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master-3.0] 2 commits: close a CVE

2018-12-05 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master-3.0 at Debian Java Maintainers / resteasy


Commits:
56276758 by Timo Aaltonen at 2018-12-05T17:10:23Z
close a CVE

- - - - -
cbd685e0 by Timo Aaltonen at 2018-12-05T17:20:59Z
releasing package resteasy3.0 version 3.0.26-1

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,6 +1,7 @@
-resteasy3.0 (3.0.26-1) UNRELEASED; urgency=medium
+resteasy3.0 (3.0.26-1) unstable; urgency=medium
 
   * New upstream release.
+- CVE-2017-7561 (Closes: #908836)
 - update maven.rules & ignoreRules
 - update libresteasy3.0-java.poms
 - drop 01-ignore-tjws.patch and 02-servlet-api-compatibility.patch
@@ -10,7 +11,7 @@ resteasy3.0 (3.0.26-1) UNRELEASED; urgency=medium
   * Drop libscannotation-java from build-depends and classpath, it got
 removed in 3.0.7.
 
- -- Timo Aaltonen   Wed, 05 Dec 2018 17:19:55 +0200
+ -- Timo Aaltonen   Wed, 05 Dec 2018 19:10:51 +0200
 
 resteasy3.0 (3.0.19-5) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/63e1dfe860039f66d97b84e36d8bb2adf1f85fc9...cbd685e03293a848b0bc61547b4a491e5f8cd17e

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/63e1dfe860039f66d97b84e36d8bb2adf1f85fc9...cbd685e03293a848b0bc61547b4a491e5f8cd17e
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][pristine-tar] pristine-tar data for resteasy3.0_3.0.26.orig.tar.gz

2018-12-05 Thread Timo Aaltonen
Timo Aaltonen pushed to branch pristine-tar at Debian Java Maintainers / 
resteasy


Commits:
93ea8063 by Timo Aaltonen at 2018-12-05T16:20:12Z
pristine-tar data for resteasy3.0_3.0.26.orig.tar.gz

- - - - -


2 changed files:

- + resteasy3.0_3.0.26.orig.tar.gz.delta
- + resteasy3.0_3.0.26.orig.tar.gz.id


Changes:

=
resteasy3.0_3.0.26.orig.tar.gz.delta
=
Binary files /dev/null and b/resteasy3.0_3.0.26.orig.tar.gz.delta differ


=
resteasy3.0_3.0.26.orig.tar.gz.id
=
@@ -0,0 +1 @@
+f0bacbc7089f4d1e9335fbf59d23802688c3cad3



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/93ea8063ba15f5a1ace7bc9b4f7efa932d4e8f91

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/93ea8063ba15f5a1ace7bc9b4f7efa932d4e8f91
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy] Pushed new branch upstream-3.0

2018-12-05 Thread Timo Aaltonen
Timo Aaltonen pushed new branch upstream-3.0 at Debian Java Maintainers / 
resteasy

-- 
View it on GitLab: https://salsa.debian.org/java-team/resteasy/tree/upstream-3.0
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master-3.0] 4 commits: add gbp.conf

2018-12-05 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master-3.0 at Debian Java Maintainers / resteasy


Commits:
f54fe2dd by Timo Aaltonen at 2018-12-05T16:19:47Z
add gbp.conf

- - - - -
6cf26097 by Timo Aaltonen at 2018-12-05T16:19:57Z
New upstream version 3.0.26
- - - - -
cd2c6be6 by Timo Aaltonen at 2018-12-05T16:20:13Z
Update upstream source from tag upstream/3.0.26

Update to upstream version 3.0.26
with Debian dir 8f766cb1ed7afc41d045d7cc9e38feeb057c3f7a
- - - - -
63e1dfe8 by Timo Aaltonen at 2018-12-05T17:07:09Z
update to 3.0.26

- - - - -


30 changed files:

- .gitignore
- .travis.yml
- CONTRIBUTING.md
- jaxrs/License.html → License.html
- README.md
- jaxrs/arquillian/.gitignore → arquillian/.gitignore
- + arquillian/RESTEASY-1056-jetty-bv11/.gitignore
- + arquillian/RESTEASY-1056-jetty-bv11/pom.xml
- 
jaxrs/arquillian/RESTEASY-1056-jetty-bv10/src/main/java/org/jboss/resteasy/resteasy1056/TestApplication.java
 → 
arquillian/RESTEASY-1056-jetty-bv11/src/main/java/org/jboss/resteasy/resteasy1056/TestApplication.java
- 
jaxrs/arquillian/RESTEASY-1056-jetty-bv11/src/main/java/org/jboss/resteasy/resteasy1056/TestResource.java
 → 
arquillian/RESTEASY-1056-jetty-bv11/src/main/java/org/jboss/resteasy/resteasy1056/TestResource.java
- + 
arquillian/RESTEASY-1056-jetty-bv11/src/test/java/org/jboss/resteasy/test/resteasy1056/MissingCDITest.java
- + arquillian/RESTEASY-1056-jetty-bv11/src/test/resources/arquillian.xml
- jaxrs/arquillian/RESTEASY-1056-jetty-bv10/src/test/resources/web.xml → 
arquillian/RESTEASY-1056-jetty-bv11/src/test/resources/web.xml
- jaxrs/arquillian/RESTEASY-1008-AS7/.gitignore → 
arquillian/RESTEASY-736-jetty/.gitignore
- + arquillian/RESTEASY-736-jetty/pom.xml
- 
jaxrs/arquillian/RESTEASY-736-as71/src/main/java/org/jboss/resteasy/resteasy736/TestApplication.java
 → 
arquillian/RESTEASY-736-jetty/src/main/java/org/jboss/resteasy/resteasy736/TestApplication.java
- 
jaxrs/arquillian/RESTEASY-736-jetty/src/main/java/org/jboss/resteasy/resteasy736/TestResource.java
 → 
arquillian/RESTEASY-736-jetty/src/main/java/org/jboss/resteasy/resteasy736/TestResource.java
- + 
arquillian/RESTEASY-736-jetty/src/test/java/org/jboss/resteasy/test/resteasy736/AsyncTimeoutTest.java
- + arquillian/RESTEASY-736-jetty/src/test/resources/arquillian.xml
- jaxrs/arquillian/RESTEASY-736-as71/src/test/resources/web.xml → 
arquillian/RESTEASY-736-jetty/src/test/resources/web.xml
- + arquillian/pom.xml
- jaxrs/as8-mavenized-distro/assembly.xml → as8-mavenized-distro/assembly.xml
- + as8-mavenized-distro/pom.xml
- jaxrs/as8-resteasy/assembly.xml → as8-resteasy/assembly.xml
- + as8-resteasy/pom.xml
- jaxrs/config/eclipse/jboss-format.xml → config/eclipse/jboss-format.xml
- jaxrs/config/eclipse/jboss-template.xml → config/eclipse/jboss-template.xml
- jaxrs/config/jboss_checks.xml → config/jboss_checks.xml
- debian/changelog
- + debian/gbp.conf


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/57bd28217d7f1b1cdcf3b10523106cd092fb68e0...63e1dfe860039f66d97b84e36d8bb2adf1f85fc9

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/57bd28217d7f1b1cdcf3b10523106cd092fb68e0...63e1dfe860039f66d97b84e36d8bb2adf1f85fc9
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master-3.0] 2 commits: Replace build-dep on libtomcat8-java with libgeronimo-annotation-1.3-spec-java.

2018-12-05 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master-3.0 at Debian Java Maintainers / resteasy


Commits:
1c76aca6 by Timo Aaltonen at 2018-12-05T15:20:20Z
Replace build-dep on libtomcat8-java with libgeronimo-annotation-1.3-spec-java.

- - - - -
57bd2821 by Timo Aaltonen at 2018-12-05T15:22:35Z
Drop libscannotation-java from build-depends and classpath, it got removed in 
3.0.7.

- - - - -


4 changed files:

- debian/changelog
- debian/control
- debian/libresteasy3.0-java.classpath
- debian/maven.rules


Changes:

=
debian/changelog
=
@@ -1,3 +1,12 @@
+resteasy3.0 (3.0.19-6) UNRELEASED; urgency=medium
+
+  * Replace build-dep on libtomcat8-java with
+libgeronimo-annotation-1.3-spec-java.
+  * Drop libscannotation-java from build-depends and classpath, it got
+removed in 3.0.7.
+
+ -- Timo Aaltonen   Wed, 05 Dec 2018 17:19:55 +0200
+
 resteasy3.0 (3.0.19-5) unstable; urgency=medium
 
   * control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api-java to


=
debian/control
=
@@ -8,6 +8,7 @@ Build-Depends-Indep:
  javahelper,
  junit4,
  libcommons-io-java,
+ libgeronimo-annotation-1.3-spec-java,
  libhttpclient-java,
  libjackson-json-java,
  libjackson2-core-java,
@@ -22,9 +23,7 @@ Build-Depends-Indep:
  libjettison-java,
  liblog4j1.2-java (>= 1.2.17),
  libmaven-install-plugin-java,
- libscannotation-java,
  libslf4j-java,
- libtomcat8-java,
  libyaml-snake-java
 Standards-Version: 3.9.8
 Vcs-Git: https://salsa.debian.org/java-team/resteasy.git


=
debian/libresteasy3.0-java.classpath
=
@@ -1,4 +1,4 @@
-usr/share/java/resteasy-jaxrs.jar  /usr/share/java/log4j-1.2.jar 
/usr/share/java/slf4j-api.jar /usr/share/java/scannotation.jar 
/usr/share/java/httpclient.jar /usr/share/java/commons-io.jar 
/usr/share/java/tomcat8-annotations-api.jar /usr/share/java/el-api-3.0.jar
+usr/share/java/resteasy-jaxrs.jar  /usr/share/java/log4j-1.2.jar 
/usr/share/java/slf4j-api.jar /usr/share/java/httpclient.jar 
/usr/share/java/commons-io.jar /usr/share/java/geronimo-annotation-1.3-spec.jar 
/usr/share/java/el-api-3.0.jar
 usr/share/java/resteasy-jaxb-provider.jar  /usr/share/java/jaxb-impl.jar
 usr/share/java/resteasy-jettison-provider.jar  /usr/share/java/jettison.jar
 usr/share/java/resteasy-jackson-provider.jar   
/usr/share/java/jackson-core-asl.jar /usr/share/java/jackson-mapper-asl.jar 
/usr/share/java/jackson-jaxrs.jar /usr/share/java/jackson-xc.jar


=
debian/maven.rules
=
@@ -12,7 +12,7 @@ org.yaml snakeyaml * s/.*/1.x/ * *
 com.sun.istack istack-commons-runtime * s/debian/2.17/ * *
 s/jboss/javassist/ javassist * s/.*/debian/ * *
 log4j log4j * s/1\.2\..*/1.2.x/ * *
-s/org.jboss.spec.javax.annotation/org.apache.tomcat/ 
s/jboss-annotations-api_1.2_spec/tomcat-annotations-api/ * s/.*/8.x/ * *
+s/org.jboss.spec.javax.annotation/org.apache.geronimo.specs/ 
s/jboss-annotations-api_1.2_spec/geronimo-annotation_1.3_spec/ * s/.*/debian/ * 
*
 s/org.jboss.spec.javax.servlet/javax.servlet/ 
s/jboss-servlet-api_3.1_spec/javax.servlet-api/ * s/.*/3.1/ * *
 s/org.jboss.spec.javax.el/javax.el/ s/jboss-el-api_3.0_spec/javax.el-api/ * 
s/.*/3.0/ * *
 s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.0_spec/javax.ws.rs-api/ * s/.*/debian/ * *



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/18ed5f410e16deb9c1db96105e6601e4f9e611b2...57bd28217d7f1b1cdcf3b10523106cd092fb68e0

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/18ed5f410e16deb9c1db96105e6601e4f9e611b2...57bd28217d7f1b1cdcf3b10523106cd092fb68e0
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master] use libgeronimo-annotations instead of tomcat.

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master at Debian Java Maintainers / resteasy


Commits:
0a013d9f by Timo Aaltonen at 2018-12-04T18:51:22Z
use libgeronimo-annotations instead of tomcat.

- - - - -


4 changed files:

- debian/changelog
- debian/control
- debian/libresteasy-java.classpath
- debian/maven.rules


Changes:

=
debian/changelog
=
@@ -1,6 +1,7 @@
 resteasy (3.6.2-2) UNRELEASED; urgency=medium
 
-  * Switch to libtomcat9-java.
+  * Replace build-dep on libtomcat8-java with
+libgeronimo-annotation-1.3-spec-java.
 
  -- Timo Aaltonen   Tue, 04 Dec 2018 19:32:09 +0200
 


=
debian/control
=
@@ -9,6 +9,7 @@ Build-Depends-Indep:
  junit4,
  libcommons-io-java,
  libgeronimo-validation-1.1-spec-java,
+ libgeronimo-annotation-1.3-spec-java,
  libhttpasyncclient-java,
  libhttpclient-java,
  libjackson-json-java,
@@ -24,7 +25,6 @@ Build-Depends-Indep:
  libreactive-streams-java,
  libscannotation-java,
  libslf4j-java,
- libtomcat9-java,
  libyaml-snake-java
 Standards-Version: 4.1.1
 Vcs-Git: https://salsa.debian.org/java-team/resteasy.git


=
debian/libresteasy-java.classpath
=
@@ -1,4 +1,4 @@
-usr/share/java/resteasy-jaxrs.jar  /usr/share/java/log4j-1.2.jar 
/usr/share/java/slf4j-api.jar /usr/share/java/slf4j-simple.jar 
/usr/share/java/scannotation.jar /usr/share/java/httpclient.jar 
/usr/share/java/commons-io.jar /usr/share/java/tomcat-annotations-api.jar 
/usr/share/java/el-api-2.1.jar
+usr/share/java/resteasy-jaxrs.jar  /usr/share/java/log4j-1.2.jar 
/usr/share/java/slf4j-api.jar /usr/share/java/slf4j-simple.jar 
/usr/share/java/scannotation.jar /usr/share/java/httpclient.jar 
/usr/share/java/commons-io.jar /usr/share/java/geronimo-annotation-1.3-spec.jar 
/usr/share/java/el-api-2.1.jar
 usr/share/java/resteasy-jaxb-provider.jar  /usr/share/java/jaxb-impl.jar
 usr/share/java/resteasy-jettison-provider.jar  /usr/share/java/jettison.jar
 usr/share/java/resteasy-jackson-provider.jar   
/usr/share/java/jackson-core-asl.jar /usr/share/java/jackson-mapper-asl.jar 
/usr/share/java/jackson-jaxrs.jar /usr/share/java/jackson-xc.jar


=
debian/maven.rules
=
@@ -9,7 +9,7 @@ org.yaml snakeyaml * s/.*/1.x/ * *
 com.sun.istack istack-commons-runtime * s/debian/2.17/ * *
 s/jboss/javassist/ javassist * s/.*/debian/ * *
 log4j log4j * s/.*/1.2.x/ * *
-s/org.jboss.spec.javax.annotation/org.apache.tomcat/ 
s/jboss-annotations-api_1.2_spec/tomcat-annotations-api/ * s/.*/9.x/ * *
+s/org.jboss.spec.javax.annotation/org.apache.geronimo.specs/ 
s/jboss-annotations-api_1.2_spec/geronimo-annotation_1.3_spec/ * s/.*/debian/ * 
*
 s/org.jboss.spec.javax.servlet/javax.servlet/ 
s/jboss-servlet-api_3.1_spec/javax.servlet-api/ * s/.*/3.1/ * *
 s/org.jboss.spec.javax.el/javax.el/ s/jboss-el-api_3.0_spec/javax.el-api/ * 
s/.*/3.0/ * *
 s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.1_spec/javax.ws.rs-api/ * s/.*/debian/ * *



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/0a013d9f12ff124eb1503103f2375461a25a8134

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/0a013d9f12ff124eb1503103f2375461a25a8134
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master] Switch to libtomcat9-java.

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master at Debian Java Maintainers / resteasy


Commits:
365f0383 by Timo Aaltonen at 2018-12-04T17:32:20Z
Switch to libtomcat9-java.

- - - - -


3 changed files:

- debian/changelog
- debian/control
- debian/maven.rules


Changes:

=
debian/changelog
=
@@ -1,3 +1,9 @@
+resteasy (3.6.2-2) UNRELEASED; urgency=medium
+
+  * Switch to libtomcat9-java.
+
+ -- Timo Aaltonen   Tue, 04 Dec 2018 19:32:09 +0200
+
 resteasy (3.6.2-1) unstable; urgency=medium
 
   * New upstream release. (Closes: #888081)


=
debian/control
=
@@ -24,7 +24,7 @@ Build-Depends-Indep:
  libreactive-streams-java,
  libscannotation-java,
  libslf4j-java,
- libtomcat8-java,
+ libtomcat9-java,
  libyaml-snake-java
 Standards-Version: 4.1.1
 Vcs-Git: https://salsa.debian.org/java-team/resteasy.git


=
debian/maven.rules
=
@@ -9,7 +9,7 @@ org.yaml snakeyaml * s/.*/1.x/ * *
 com.sun.istack istack-commons-runtime * s/debian/2.17/ * *
 s/jboss/javassist/ javassist * s/.*/debian/ * *
 log4j log4j * s/.*/1.2.x/ * *
-s/org.jboss.spec.javax.annotation/org.apache.tomcat/ 
s/jboss-annotations-api_1.2_spec/tomcat-annotations-api/ * s/.*/8.x/ * *
+s/org.jboss.spec.javax.annotation/org.apache.tomcat/ 
s/jboss-annotations-api_1.2_spec/tomcat-annotations-api/ * s/.*/9.x/ * *
 s/org.jboss.spec.javax.servlet/javax.servlet/ 
s/jboss-servlet-api_3.1_spec/javax.servlet-api/ * s/.*/3.1/ * *
 s/org.jboss.spec.javax.el/javax.el/ s/jboss-el-api_3.0_spec/javax.el-api/ * 
s/.*/3.0/ * *
 s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.1_spec/javax.ws.rs-api/ * s/.*/debian/ * *



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/365f0383508c6c63fed091c06be49e1aea5d17c3

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/365f0383508c6c63fed091c06be49e1aea5d17c3
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master] 9 commits: New upstream version 3.6.2

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master at Debian Java Maintainers / resteasy


Commits:
f7bde523 by Timo Aaltonen at 2018-12-04T12:48:22Z
New upstream version 3.6.2
- - - - -
94f1ef3e by Timo Aaltonen at 2018-12-04T12:48:22Z
Update upstream source from tag upstream/3.6.2

Update to upstream version 3.6.2
with Debian dir bc09245e7e15425a99f194e6a797e1f5f677738c
- - - - -
958b8851 by Timo Aaltonen at 2018-12-04T12:48:45Z
bump the version

- - - - -
64c91794 by Timo Aaltonen at 2018-12-04T13:45:18Z
Fix jaxb-api compat patch and maven.rules for javax.xml.bind.

- - - - -
554d6324 by Timo Aaltonen at 2018-12-04T13:46:20Z
control: Add libhttpasyncclient-java to build-depends.

- - - - -
dbe2d654 by Timo Aaltonen at 2018-12-04T13:47:51Z
libresteasy-java.poms: Ignore some poms.

- - - - -
836a25d8 by Timo Aaltonen at 2018-12-04T13:48:29Z
maven.ignoreRules: Ignore jetty-client.

- - - - -
55f48586 by Timo Aaltonen at 2018-12-04T14:13:49Z
control: Update VCS urls.

- - - - -
dd1647f3 by Timo Aaltonen at 2018-12-04T15:14:47Z
releasing package resteasy version 3.6.2-1

- - - - -


30 changed files:

- .travis.yml
- arquillian/RESTEASY-1056-jetty-bv11/pom.xml
- 
arquillian/RESTEASY-1056-jetty-bv11/src/main/java/org/jboss/resteasy/resteasy1056/TestResource.java
- 
arquillian/RESTEASY-1056-jetty-bv11/src/test/java/org/jboss/resteasy/test/resteasy1056/MissingCDITest.java
- arquillian/RESTEASY-736-jetty/pom.xml
- 
arquillian/RESTEASY-736-jetty/src/main/java/org/jboss/resteasy/resteasy736/TestResource.java
- 
arquillian/RESTEASY-736-jetty/src/test/java/org/jboss/resteasy/test/resteasy736/AsyncTimeoutTest.java
- arquillian/pom.xml
- − as8-mavenized-distro/assembly.xml
- − as8-mavenized-distro/pom.xml
- − as8-resteasy/assembly.xml
- − as8-resteasy/pom.xml
- checkstyle.xml
- debian/changelog
- debian/control
- debian/libresteasy-java.poms
- debian/maven.ignoreRules
- debian/maven.rules
- debian/patches/jaxb-api-compatibility.diff
- distribution/pom.xml
- distribution/src-distribution/pom.xml
- docbook/pom.xml
- docbook/reference/en/en-US/master.xml
- docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
- docbook/reference/en/en-US/modules/Installation_Configuration.xml
- docbook/reference/en/en-US/modules/Json-p.xml
- docbook/reference/en/en-US/modules/Links.xml
- docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
- + docbook/reference/en/en-US/modules/MicroProfile_Rest_Client.xml
- docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/9869d21f0d4369dbee263687221f36a960cda605...dd1647f359c9d58ae99e43dc49af2c810c0dba02

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/9869d21f0d4369dbee263687221f36a960cda605...dd1647f359c9d58ae99e43dc49af2c810c0dba02
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][upstream] New upstream version 3.6.2

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed to branch upstream at Debian Java Maintainers / resteasy


Commits:
f7bde523 by Timo Aaltonen at 2018-12-04T12:48:22Z
New upstream version 3.6.2
- - - - -


30 changed files:

- .travis.yml
- arquillian/RESTEASY-1056-jetty-bv11/pom.xml
- 
arquillian/RESTEASY-1056-jetty-bv11/src/main/java/org/jboss/resteasy/resteasy1056/TestResource.java
- 
arquillian/RESTEASY-1056-jetty-bv11/src/test/java/org/jboss/resteasy/test/resteasy1056/MissingCDITest.java
- arquillian/RESTEASY-736-jetty/pom.xml
- 
arquillian/RESTEASY-736-jetty/src/main/java/org/jboss/resteasy/resteasy736/TestResource.java
- 
arquillian/RESTEASY-736-jetty/src/test/java/org/jboss/resteasy/test/resteasy736/AsyncTimeoutTest.java
- arquillian/pom.xml
- − as8-mavenized-distro/assembly.xml
- − as8-mavenized-distro/pom.xml
- − as8-resteasy/assembly.xml
- − as8-resteasy/pom.xml
- checkstyle.xml
- distribution/pom.xml
- distribution/src-distribution/pom.xml
- docbook/pom.xml
- docbook/reference/en/en-US/master.xml
- docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
- docbook/reference/en/en-US/modules/Installation_Configuration.xml
- docbook/reference/en/en-US/modules/Json-p.xml
- docbook/reference/en/en-US/modules/Links.xml
- docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
- + docbook/reference/en/en-US/modules/MicroProfile_Rest_Client.xml
- docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml
- docbook/reference/en/en-US/modules/signature.xml
- docbook/reference/en/en-US/modules/smime.xml
- eagledns/pom.xml
- eagledns/src/main/java/se/unlogic/eagledns/CachedPrimaryZone.java
- eagledns/src/main/java/se/unlogic/eagledns/CachedSecondaryZone.java
- eagledns/src/main/java/se/unlogic/eagledns/EagleDNS.java


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/f7bde52344ea62ab32d1abb28f08183895512398

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/f7bde52344ea62ab32d1abb28f08183895512398
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy] Pushed new tag debian/3.6.2-1

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed new tag debian/3.6.2-1 at Debian Java Maintainers / 
resteasy

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/tree/debian/3.6.2-1
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master] control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api- java to build-depends.

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master at Debian Java Maintainers / resteasy


Commits:
9869d21f by Timo Aaltonen at 2018-12-04T12:47:40Z
control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api- java to 
build-depends.

- - - - -


4 changed files:

- debian/changelog
- debian/control
- + debian/patches/jaxb-api-compatibility.diff
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -8,6 +8,8 @@ resteasy (3.6.1.SP2-1) UNRELEASED; urgency=medium
 - Add libgeronimo-validation-1.1-spec-java to build-depends
   * poms: Ignore client-jetty, client-microprofile.
   * maven.rules: Updated.
+  * control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api-
+java to build-depends.
 
  -- Timo Aaltonen   Tue, 13 Mar 2018 17:23:12 +0200
 


=
debian/control
=
@@ -12,6 +12,7 @@ Build-Depends-Indep:
  libhttpclient-java,
  libjackson-json-java,
  libjaxb-java,
+ libjaxb-api-java,
  libjaxrs-api-java,
  libjboss-logging-java,
  libjboss-logging-tools-java,


=
debian/patches/jaxb-api-compatibility.diff
=
@@ -0,0 +1,14 @@
+--- a/resteasy-jaxrs/pom.xml
 b/resteasy-jaxrs/pom.xml
+@@ -127,6 +127,11 @@
+ org.jboss.logging
+ jboss-logging-processor
+ 
++  
++ javax.xml.bind
++ jaxb-api
++ 2.3.0
++   
+ 
+ 
+ 


=
debian/patches/series
=
@@ -1 +1,2 @@
 01-ignore-tjws.patch
+jaxb-api-compatibility.diff



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/9869d21f0d4369dbee263687221f36a960cda605

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/9869d21f0d4369dbee263687221f36a960cda605
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master-3.0] 3 commits: control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api-java to…

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master-3.0 at Debian Java Maintainers / resteasy


Commits:
7b849ed7 by Timo Aaltonen at 2018-12-04T11:49:22Z
control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api-java to 
build-depends. (Closes: #912395)

- - - - -
1608a5b7 by Timo Aaltonen at 2018-12-04T12:12:42Z
Enable jackson2 provider.

- - - - -
18ed5f41 by Timo Aaltonen at 2018-12-04T12:13:07Z
releasing package resteasy3.0 version 3.0.19-5

- - - - -


7 changed files:

- debian/changelog
- debian/control
- debian/libresteasy3.0-java.classpath
- debian/libresteasy3.0-java.poms
- debian/maven.rules
- + debian/patches/jaxb-api-compatibility.diff
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,11 @@
+resteasy3.0 (3.0.19-5) unstable; urgency=medium
+
+  * control, jaxb-api-compatibility.diff: Fix build, add libjaxb-api-java to
+build-depends. (Closes: #912395)
+  * Enable jackson2 provider.
+
+ -- Timo Aaltonen   Tue, 04 Dec 2018 14:13:02 +0200
+
 resteasy3.0 (3.0.19-4) unstable; urgency=medium
 
   * classpath: Updated, drop slf4j-simple.jar, fix snakeyml and annotations-api


=
debian/control
=
@@ -10,7 +10,12 @@ Build-Depends-Indep:
  libcommons-io-java,
  libhttpclient-java,
  libjackson-json-java,
+ libjackson2-core-java,
+ libjackson2-databind-java,
+ libjackson2-jaxrs-providers-java,
+ libjackson2-module-jaxb-annotations-java,
  libjaxb-java,
+ libjaxb-api-java,
  libjaxrs-api-java (>= 2.1),
  libjboss-logging-java,
  libjboss-logging-tools-java,


=
debian/libresteasy3.0-java.classpath
=
@@ -2,5 +2,6 @@ usr/share/java/resteasy-jaxrs.jar   
/usr/share/java/log4j-1.2.jar /usr/share/java/
 usr/share/java/resteasy-jaxb-provider.jar  /usr/share/java/jaxb-impl.jar
 usr/share/java/resteasy-jettison-provider.jar  /usr/share/java/jettison.jar
 usr/share/java/resteasy-jackson-provider.jar   
/usr/share/java/jackson-core-asl.jar /usr/share/java/jackson-mapper-asl.jar 
/usr/share/java/jackson-jaxrs.jar /usr/share/java/jackson-xc.jar
+usr/share/java/resteasy-jackson2-provider.jar  
/usr/share/java/jackson-core.jar /usr/share/java/jackson-databind.jar 
/usr/share/java/jackson-jaxrs-base.jar 
/usr/share/java/jackson-jaxrs-json-provider.jar 
/usr/share/java/jackson-module-jaxb-annotations.jar
 usr/share/java/resteasy-atom-provider.jar  /usr/share/java/jaxb-impl.jar
 usr/share/java/resteasy-yaml-provider.jar  /usr/share/java/snakeyaml.jar


=
debian/libresteasy3.0-java.poms
=
@@ -38,7 +38,7 @@ jaxrs/providers/fastinfoset/pom.xml --ignore
 jaxrs/providers/jaxb/pom.xml --has-package-version
 jaxrs/providers/jettison/pom.xml --has-package-version
 jaxrs/providers/jackson/pom.xml --has-package-version
-jaxrs/providers/jackson2/pom.xml --ignore
+jaxrs/providers/jackson2/pom.xml --has-package-version
 jaxrs/providers/json-p-ee7/pom.xml --ignore
 jaxrs/providers/multipart/pom.xml --ignore
 jaxrs/providers/resteasy-atom/pom.xml --has-package-version


=
debian/maven.rules
=
@@ -3,6 +3,9 @@ s/msv-msv/net.java.dev.msv/ s/msv-msv/msv/ jar debian * *
 com.fasterxml.jackson.core jackson-annotations jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind jar s/2\..*/2.x/ * *
+com.fasterxml.jackson.jaxrs jackson-jaxrs-base * s/.*/2.x/ * *
+com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider * s/.*/2.x/ * *
+com.fasterxml.jackson.module jackson-module-jaxb-annotations * s/.*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
 org.codehaus.jettison jettison s/bundle/jar/ s/.*/debian/ * *
 org.yaml snakeyaml * s/.*/1.x/ * *


=
debian/patches/jaxb-api-compatibility.diff
=
@@ -0,0 +1,14 @@
+--- a/jaxrs/resteasy-jaxrs/pom.xml
 b/jaxrs/resteasy-jaxrs/pom.xml
+@@ -133,6 +133,11 @@
+ provided
+ true
+ 
++  
++ javax.xml.bind
++ jaxb-api
++ 2.3.0
++   
+ 
+ 
+ 


=
debian/patches/series
=
@@ -1,3 +1,4 @@
 01-ignore-tjws.patch
 02-servlet-api-compatibility.patch
 03-jaxrs-api-compatibility.patch
+jaxb-api-compatibility.diff



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/15d337db2b0530f70d7f0e7bbe90c8df81cef75a...18ed5f410e16deb9c1db96105e6601e4f9e611b2

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/15d337db2b0530f70d7f0e7bbe90c8df81cef75a...18ed5f410e16deb9c1db96105e6601e4f9e611b2
You're receiving this email because of your account on salsa.debian.org.
___
pkg-j

[Git][java-team/resteasy] Pushed new tag debian/3.0.19-5

2018-12-04 Thread Timo Aaltonen
Timo Aaltonen pushed new tag debian/3.0.19-5 at Debian Java Maintainers / 
resteasy

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/tree/debian/3.0.19-5
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][master] 8 commits: New upstream version 3.6.1

2018-10-17 Thread Timo Aaltonen
Timo Aaltonen pushed to branch master at Debian Java Maintainers / resteasy


Commits:
4189faad by Timo Aaltonen at 2018-10-17T12:22:57Z
New upstream version 3.6.1
- - - - -
1c3864f1 by Timo Aaltonen at 2018-10-17T12:22:57Z
Update upstream source from tag upstream/3.6.1

Update to upstream version 3.6.1
with Debian dir a9aad486466d9887922aecc0d2a386a1e28e0e7c
- - - - -
27873b13 by Timo Aaltonen at 2018-10-17T12:51:54Z
bump the version

- - - - -
941155dd by Timo Aaltonen at 2018-10-17T12:52:31Z
poms: Ignore client-jetty, client-microprofile.

- - - - -
241c5bb1 by Timo Aaltonen at 2018-10-17T12:52:47Z
maven.rules: Updated.

- - - - -
46bdfe7f by Timo Aaltonen at 2018-10-17T15:11:47Z
New upstream version 3.6.1.SP2
- - - - -
0e5982a4 by Timo Aaltonen at 2018-10-17T15:11:59Z
Update upstream source from tag upstream/3.6.1.SP2

Update to upstream version 3.6.1.SP2
with Debian dir d1d8ea1a94b1cdbdc9cefad9427f89b382084b53
- - - - -
20664c89 by Timo Aaltonen at 2018-10-17T15:15:47Z
bump the version

- - - - -


30 changed files:

- .travis.yml
- README.md
- arquillian/RESTEASY-1056-jetty-bv11/pom.xml
- arquillian/RESTEASY-736-jetty/pom.xml
- arquillian/pom.xml
- as8-mavenized-distro/pom.xml
- as8-resteasy/pom.xml
- + checkstyle.xml
- debian/changelog
- debian/libresteasy-java.poms
- debian/maven.rules
- distribution/pom.xml
- distribution/src-distribution/pom.xml
- docbook/pom.xml
- docbook/reference/en/en-US/master.xml
- docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
- 
docbook/reference/en/en-US/modules/Configuring_Individual_JAX-RS_Resource_Beans.xml
- docbook/reference/en/en-US/modules/Installation_Configuration.xml
- docbook/reference/en/en-US/modules/JAX-RS_2.1_additions.xml
- docbook/reference/en/en-US/modules/Json-p.xml
- docbook/reference/en/en-US/modules/Json.xml
- docbook/reference/en/en-US/modules/Links.xml
- docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
- docbook/reference/en/en-US/modules/Migration_to_3.1.xml
- docbook/reference/en/en-US/modules/Multipart.xml
- docbook/reference/en/en-US/modules/RESTEasy_Client_Framework.xml
- docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml
- docbook/reference/en/en-US/modules/Reactive.xml
- + docbook/reference/en/en-US/modules/Resources_Metadata.xml
- − docbook/reference/en/en-US/modules/Seam.xml


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/c503ec3685759dab3b31dca23858130c6e282a31...20664c895021f919f36d6ddfbd1b26ca766d1606

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/compare/c503ec3685759dab3b31dca23858130c6e282a31...20664c895021f919f36d6ddfbd1b26ca766d1606
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][upstream] New upstream version 3.6.1.SP2

2018-10-17 Thread Timo Aaltonen
Timo Aaltonen pushed to branch upstream at Debian Java Maintainers / resteasy


Commits:
46bdfe7f by Timo Aaltonen at 2018-10-17T15:11:47Z
New upstream version 3.6.1.SP2
- - - - -


30 changed files:

- .travis.yml
- README.md
- arquillian/RESTEASY-1056-jetty-bv11/pom.xml
- arquillian/RESTEASY-736-jetty/pom.xml
- arquillian/pom.xml
- as8-mavenized-distro/pom.xml
- as8-resteasy/pom.xml
- + checkstyle.xml
- distribution/pom.xml
- distribution/src-distribution/pom.xml
- docbook/pom.xml
- docbook/reference/en/en-US/master.xml
- docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
- 
docbook/reference/en/en-US/modules/Configuring_Individual_JAX-RS_Resource_Beans.xml
- docbook/reference/en/en-US/modules/Installation_Configuration.xml
- docbook/reference/en/en-US/modules/JAX-RS_2.1_additions.xml
- docbook/reference/en/en-US/modules/Json-p.xml
- docbook/reference/en/en-US/modules/Json.xml
- docbook/reference/en/en-US/modules/Links.xml
- docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
- docbook/reference/en/en-US/modules/Migration_to_3.1.xml
- docbook/reference/en/en-US/modules/Multipart.xml
- docbook/reference/en/en-US/modules/RESTEasy_Client_Framework.xml
- docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml
- docbook/reference/en/en-US/modules/Reactive.xml
- + docbook/reference/en/en-US/modules/Resources_Metadata.xml
- − docbook/reference/en/en-US/modules/Seam.xml
- docbook/reference/en/en-US/modules/StringConverter.xml
- docbook/reference/en/en-US/modules/Using_Path.xml
- docbook/reference/en/en-US/modules/_CookieParam.xml


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/46bdfe7fc901478d0f5fab6e4fd08174fbdf284b

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/46bdfe7fc901478d0f5fab6e4fd08174fbdf284b
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy][pristine-tar] pristine-tar data for resteasy_3.6.1.SP2.orig.tar.gz

2018-10-17 Thread Timo Aaltonen
Timo Aaltonen pushed to branch pristine-tar at Debian Java Maintainers / 
resteasy


Commits:
c35614c4 by Timo Aaltonen at 2018-10-17T15:11:59Z
pristine-tar data for resteasy_3.6.1.SP2.orig.tar.gz

- - - - -


2 changed files:

- + resteasy_3.6.1.SP2.orig.tar.gz.delta
- + resteasy_3.6.1.SP2.orig.tar.gz.id


Changes:

=
resteasy_3.6.1.SP2.orig.tar.gz.delta
=
Binary files /dev/null and b/resteasy_3.6.1.SP2.orig.tar.gz.delta differ


=
resteasy_3.6.1.SP2.orig.tar.gz.id
=
@@ -0,0 +1 @@
+539cc8d65ea727a80abfe02f6f58a8598944eb91



View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/c35614c4f97e92d575edbc67f46a9d4cd7f49bd8

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/resteasy/commit/c35614c4f97e92d575edbc67f46a9d4cd7f49bd8
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[Git][java-team/resteasy] Pushed new branch master-3.0

2018-10-17 Thread Timo Aaltonen
Timo Aaltonen pushed new branch master-3.0 at Debian Java Maintainers / resteasy

-- 
View it on GitLab: https://salsa.debian.org/java-team/resteasy/tree/master-3.0
You're receiving this email because of your account on salsa.debian.org.
___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

[resteasy] 02/02: releasing package resteasy version 3.1.0-2

2017-02-14 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit beb1d0d2e37af3175ad75acf239320eeba21e8e8
Author: Timo Aaltonen <tjaal...@debian.org>
Date:   Tue Feb 14 10:46:44 2017 +0200

releasing package resteasy version 3.1.0-2
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 835f40c..02b9049 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-resteasy (3.1.0-2) UNRELEASED; urgency=medium
+resteasy (3.1.0-2) unstable; urgency=medium
 
   * Enable resteasy-legacy, dogtag-pki needs it. (LP: ##1664457)
 
- -- Timo Aaltonen <tjaal...@debian.org>  Tue, 14 Feb 2017 10:41:10 +0200
+ -- Timo Aaltonen <tjaal...@debian.org>  Tue, 14 Feb 2017 10:46:33 +0200
 
 resteasy (3.1.0-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] 01/02: Enable resteasy-legacy, dogtag-pki needs it. (LP: ##1664457)

2017-02-14 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit ae2e500fbbbfccfc60223ba59df0ee1beca6d8da
Author: Timo Aaltonen <tjaal...@debian.org>
Date:   Tue Feb 14 10:46:29 2017 +0200

Enable resteasy-legacy, dogtag-pki needs it. (LP: ##1664457)
---
 debian/changelog | 6 ++
 debian/libresteasy-java.poms | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e19c8cf..835f40c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+resteasy (3.1.0-2) UNRELEASED; urgency=medium
+
+  * Enable resteasy-legacy, dogtag-pki needs it. (LP: ##1664457)
+
+ -- Timo Aaltonen <tjaal...@debian.org>  Tue, 14 Feb 2017 10:41:10 +0200
+
 resteasy (3.1.0-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/libresteasy-java.poms b/debian/libresteasy-java.poms
index c2d29a4..f529b8c 100644
--- a/debian/libresteasy-java.poms
+++ b/debian/libresteasy-java.poms
@@ -51,7 +51,7 @@ resteasy-guice/pom.xml --ignore
 resteasy-jaxrs/pom.xml --has-package-version
 resteasy-jaxrs-services/pom.xml --has-package-version
 resteasy-jsapi/pom.xml --ignore
-resteasy-legacy/pom.xml --ignore
+resteasy-legacy/pom.xml --has-package-version
 resteasy-links/pom.xml --ignore
 resteasy-spring/pom.xml --ignore
 resteasy-servlet-initializer/pom.xml --ignore

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] branch master updated (439c988 -> beb1d0d)

2017-02-14 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository resteasy.

  from  439c988   Upload to unstable
   new  ae2e500   Enable resteasy-legacy, dogtag-pki needs it. (LP: 
##1664457)
   new  beb1d0d   releasing package resteasy version 3.1.0-2

The 2 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/changelog | 6 ++
 debian/libresteasy-java.poms | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] annotated tag debian/3.1.0-2 created (now 6fed18e)

2017-02-14 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/3.1.0-2
in repository resteasy.

at  6fed18e   (tag)
   tagging  beb1d0d2e37af3175ad75acf239320eeba21e8e8 (commit)
  replaces  debian/3.1.0-1
 tagged by  Timo Aaltonen
on  Tue Feb 14 10:46:44 2017 +0200

- Log -
tagging package resteasy version debian/3.1.0-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJYosP0AAoJEMtwMWWoiYTcM3kQAIYHiU/q3LjzDcAdLttWi9U/
PmXjaQh3Ha3P1q4Nqk8ssPf0R5HK9qlpS+Axgfu/lY4EvpSStbzkUCxWZ8yO9KNX
GpS69W5TFdzPtBM088Whz8i4Owv0ab/qu+wXEF/OmiNnnzUqls4qa5uO9vXmxnmi
bUOxY7XIVNjH37q2FjGMcbig0MdO+O0SmwQqeqArpUG3bAGOjsxAjymlSj1SXoSK
UifLucVdURwLL1DbBVCIK7o5LVKLn0nCVrjHUE7u5rkZG/283p/PRFe3ZDN+be23
Y07QFQ5+JzaVS8+rhR+cKhpXVFfTDA1arD/qRKo169FKfp1yPCEew2cJeoi66BoM
uETsTaJB/2Tn4RUZ8D8ohquSYjQZFZSFFZKTAFl1zpCCvJFtIIMxi3GOvm5jmpdd
9VFPUtT0QryuB6IQZdanCUeplliWA0BLitPPEWjuREB5XIAF7w+pbhFjJe8aJmLl
fNlZGzmg7AfCnqX3ImsB9kGJDsF1uDomkOgE1jmD8M5nLSv6qsNLy49avqmFK+F0
yyV8M9IlJQDKnrBmmoKXl1qF04HsS/gjU/XEC900pygALDYMj5Oj7jgU6cBIKv5M
iP1At2oKJLXxdzHfP0cgQJPL5YHzqrp3sdQobygF3JCdksKtNwfqnWYN0SQ5xiOp
9QiFfXQXgvXOn6bF4GYP
=Cq69
-END PGP SIGNATURE-

Timo Aaltonen (2):
  Enable resteasy-legacy, dogtag-pki needs it. (LP: ##1664457)
  releasing package resteasy version 3.1.0-2

---

This annotated tag includes the following new commits:

   new  ae2e500   Enable resteasy-legacy, dogtag-pki needs it. (LP: 
##1664457)
   new  beb1d0d   releasing package resteasy version 3.1.0-2

The 2 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[jboss-jaxrs-2.0-api] annotated tag debian/1.0.0-1 created (now 7ef9f86)

2016-09-20 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/1.0.0-1
in repository jboss-jaxrs-2.0-api.

at  7ef9f86   (tag)
   tagging  f9e147ed7dadfd78bcaffd2a667cea62ec9298ba (commit)
 tagged by  Timo Aaltonen
on  Tue Sep 20 11:35:31 2016 +0300

- Log -
tagging package jboss-jaxrs-2.0-api version debian/1.0.0-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJX4PTTAAoJEMtwMWWoiYTct+0QAJHOVd1S+sTqEj2S+X5WeeUI
m3ezSZjnwLt7JkAhVcOyTdhVFMFghMgIGpE4YxWgY7I1fzg8SCF+pj+WD2lHZQ8a
bMzsXJ8uuPCCyiEWngcF7uIuPX8BQWzFBcB6VPXSz3A5iEmwH8k3phNEd/w/41Id
CraepVp0UNDObVphluihai6DVVq+glJ9LC0o2fclBBiyXs0divhnXycFOahVYIBr
7Gv1l5DLTnDSnbyUvWCfHfPsQ6rFP4MP1+HnMcCVYcF8KACumbR0owv4ysZAm6FZ
Tt/k4csTGFPAuVzD8Ar1tMjqQlKeeXyPvpBmBbETO6HG6mXYDKk+mcfMLZhKJImO
W+bZ7aOTjSAYGiaOImKXI+ELHJtq5YXbDVOpAlHGvXxC+tyyrP549KxWBqEN7C9y
ul9YEI8nvmeyOE3C45SQ9/KxdioW3X0HL2OvJWoeipPIuf5Cqc71gXOXQoPNGXxu
x2KlkjGGbPYTPTk3gLAqbtJBdpK57hEYlFGGTN+6HzOxEDR3qRUInbeUdL1sI6b+
q/aAm9MxNgUTYikv80PvlrsEdDrG0UBC4cXDFCEVogf2p1jT9pVmb3q81XEFlvGR
XWJxsirq1Kt9llD9n7x7toUpLX2reEpHQNUwI6f7ZHKkTvZeX9/pO8o9J08u5lmz
D+iOhB1r7AusPpCK80+1
=bKhI
-END PGP SIGNATURE-

Marek Goldmann (1):
  License fix

Paul Gier (5):
  [JBEE-83] Extend from jboss-parent and update scm config for github
  Add .gitingore
  Update jboss-parent pom and other minor pom updates
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_1.1_spec-1.0.1.Final
  [maven-release-plugin] prepare for next development iteration

Shelly McGowan (12):
  JBEE-22 - add JAXRS APIs
  changes picked up from org.jboss.resteasy:jaxrs-api version 2.0.0.GA
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_1.1_spec-1.0.0.Beta1
  [maven-release-plugin] prepare for next development iteration
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_1.1_spec-1.0.0.Final
  [maven-release-plugin] prepare for next development iteration
  JBEE-131 - API updates for JAX-RS v2.0
  JBEE-131 - sync JAX-RS 2.0 APIs with reference implementation
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_2.0_spec-1.0.0.Alpha1
  [maven-release-plugin] prepare for next development iteration
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_2.0_spec-1.0.0.Alpha1
  [maven-release-plugin] prepare for next development iteration

Timo Aaltonen (1):
  initial packaging

Tomaz Cerar (6):
  sync with resteasy changes
  Update parent
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_2.0_spec-1.0.0.Beta1
  [maven-release-plugin] prepare for next development iteration
  Use exactly same ClientBuilder as we used it before
  [maven-release-plugin] prepare release 
jboss-jaxrs-api_2.0_spec-1.0.0.Final

---

This annotated tag includes the following new commits:

   new  f9e147e   initial packaging

The 1 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jboss-jaxrs-2.0-api.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


[jboss-jaxrs-2.0-api] 01/01: initial packaging

2016-09-20 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jboss-jaxrs-2.0-api.

commit f9e147ed7dadfd78bcaffd2a667cea62ec9298ba
Author: Timo Aaltonen <tjaal...@debian.org>
Date:   Tue Sep 20 11:34:59 2016 +0300

initial packaging
---
 debian/README.source|   9 +
 debian/changelog|   5 +
 debian/compat   |   1 +
 debian/control  |  21 ++
 debian/copyright| 432 
 debian/libjboss-jaxrs-2.0-api-java.poms |  28 +++
 debian/maven.cleanIgnoreRules   |   1 +
 debian/maven.ignoreRules|   2 +
 debian/maven.properties |   5 +
 debian/maven.publishedRules |   2 +
 debian/maven.rules  |   2 +
 debian/rules|   7 +
 debian/source/format|   1 +
 debian/watch|   5 +
 14 files changed, 521 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 000..0a42ed0
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,9 @@
+Information about jboss-jaxrs-2.0-api
+-
+
+This package was debianized using the mh_make command
+from the maven-debian-helper package.
+
+The build system uses Maven but prevents it from downloading
+anything from the Internet, making the build compliant with
+the Debian policy.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 000..d38760c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+jboss-jaxrs-2.0-api (1.0.0-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #838347)
+
+ -- Timo Aaltonen <tjaal...@debian.org>  Tue, 20 Sep 2016 11:34:45 +0300
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 000..56ebb23
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: jboss-jaxrs-2.0-api
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
<pkg-java-maintain...@lists.alioth.debian.org>
+Uploaders: Timo Aaltonen <tjaal...@debian.org>
+Build-Depends: debhelper (>= 9),
+ default-jdk,
+ libmaven-bundle-plugin-java,
+ maven-debian-helper (>= 2.1)
+Standards-Version: 3.9.8
+Vcs-Git: https://anonscm.debian.org/git/pkg-java/jboss-jaxrs-2.0-api.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jboss-jaxrs-2.0-api.git
+Homepage: https://github.com/jboss/jboss-jaxrs-api_spec
+
+Package: libjboss-jaxrs-2.0-api-java
+Architecture: all
+Depends: ${misc:Depends}, ${maven:Depends}
+Suggests: ${maven:OptionalDepends}
+Description: JAX-RS 2.0 Java API for RESTful Web Services
+ This package contains the Java API for RESTful Web Services
+ JAX-RS version 2.0.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 000..e3e8630
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,432 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: JAX-RS 2.0: The Java(TM) API for RESTful Web Services
+Source: https://github.com/jboss/jboss-jaxrs-api_spec
+
+Files: *
+Copyright: 2010-2013, Oracle and/or its affiliates
+License: CDDL or GPL-2 with classpath exception
+
+Files: src/main/java/javax/ws/rs/core/GenericEntity.java
+Copyright: 2006, Google Inc.
+   2010-2013, Oracle and/or its affiliates
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2016, Timo Aaltonen <tjaal...@debian.org>
+License: CDDL or GPL-2 with classpath exception
+
+License: Apache-2.0
+ On Debian systems, the full text of the Apache-2.0 license
+ can be found in the file '/usr/share/common-licenses/Apache-2.0'
+
+License: CDDL
+  COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
+  .
+  1. Definitions.
+  .
+  1.1. "Contributor" means each individual or entity that
+  creates or contributes to the creation of Modifications.
+  .
+  1.2. "Contributor Version" means the combination of the
+  Original Software, prior Modifications used by a
+  Contributor (if any), and the Modifications made by that
+  particular Contributor.
+  .
+  1.3. "Covered Software" means (a) the Original Software, or
+  (b) Modifications, or (c) the combination of files
+  containing Original Software with files containing
+  Modifications, in each case including portions thereof.
+  .
+  1.4. "Executable" means the Covered Software in any form
+  other than Source Code.
+  .
+  1.5. "Initial Developer" means the individual or entity
+  that first makes Original Software available under this
+  License.
+  .
+  1.6. "Larger Work" means a work which combines Covered
+  Software or portions thereof with code not governed by the
+  terms of 

[jboss-jaxrs-2.0-api] branch master created (now f9e147e)

2016-09-20 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jboss-jaxrs-2.0-api.

at  f9e147e   initial packaging

This branch includes the following new commits:

   new  f9e147e   initial packaging

The 1 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jboss-jaxrs-2.0-api.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


[fastinfoset] branch master updated (4fb8605 - 6169f6a)

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository fastinfoset.

  from  4fb8605   fix copyright
  adds  6169f6a   update copyright

No new revisions were added by this update.

Summary of changes:
 debian/copyright | 52 
 1 file changed, 52 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/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


[fastinfoset] annotated tag debian/1.2.12-1 updated (4fb8605 - d31e599)

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/1.2.12-1
in repository fastinfoset.

*** WARNING: tag debian/1.2.12-1 was modified! ***

  from  4fb8605   (commit)
to  d31e599   (tag)
   tagging  6169f6aaa692324285ec3aaf2b80f6e306e3b8e1 (commit)
  replaces  upstream/1.2.12
 tagged by  Timo Aaltonen
on  Tue Oct 28 11:09:39 2014 +0200

- Log -
releasing package fastinfoset version 1.2.12-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUT12NAAoJEMtwMWWoiYTcF8cP/2fKOZS++RQjU9E0NaXAmfia
ju7kkpT8aEkerEMGtQPiBprrGlcIxMQB3PkOJD0ilr6nxDMWOIEiE8LMyPL6fpDs
+8VQusuSIL4uZ4UFWNR8j74j8560iIv0jxJuIJq1WfhzYAwmq3s5xSFcAFuXsxxb
z1EvZZjgOtUs/SSfawvYMuy1+bBEkKl0c5oDpMnxVp+hdvGkaqL5d+Kcei7vCTUm
2ztDYOiDMIMqSQ8d2pH9IlnRxW97jqkGV9CZAAALznnKrVgBLC6cgxzc+cFNCKTO
VhUNhtWXv2HeHAHSDs9esr6NFHF28AEIf7t/PICQaJFpOmYDKmyiTli80+hNeuuo
4dKpB9tufufmr5zS5tQ23er05gSgW3L2A8ErkF7UuwR+2Y8KgSTdWmXGgRuyNtam
ym6dEh9LfwZ6/XgO6NujnV10mvQlAMUGdtp8TSvWVbpbvsAoQQW9Q1V7kFB56Ogm
pgy+H6o+jH/Ra3L+7wEVktwo6YKTgBS5s7BjX8qgRe67coaXaeeISCCLMw/aQdsT
wKAM3QRepLDbqA+Ok1TGgCp5u9d54EPWSwTgouY4PHUlyWRVkW9jlyXc7EfLhhGl
DtDNd7bE7DWEAAmyuiP6v1+AnPMKnmC9nkCl50CQaOAyrY7s8QR+bPU472vtyXFR
9t2ddbV87mA14GHZ+rHt
=uK/p
-END PGP SIGNATURE-

Benjamin Drung (2):
  Fix copyright.
  Release fastinfoset 1.2.12-1 to Debian unstable.

Timo Aaltonen (17):
  initial packaging
  bump debhelper to 9, fix vcs-browser header
  use xz compression, exclude zip files instead of whole roundtrip-tests
  Merge branch 'upstream'
  use debian versioning for the jar/pom
  wrap-and-sort
  change the uploader
  add dep-3 header to the patch
  rename the source/binary pkgs
  Merge tag 'upstream/1.2.12'
  fix a build-dep
  add a classpath file, javahelper to build-deps
  remove cruft on clean
  fix patch author
  wrap-and-sort -s
  fix copyright
  update copyright

---

  from  4fb8605   fix copyright
   new  6169f6a   update copyright

The 1 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/copyright | 52 
 1 file changed, 52 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/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


[fastinfoset] 01/01: update copyright

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to annotated tag debian/1.2.12-1
in repository fastinfoset.

commit 6169f6aaa692324285ec3aaf2b80f6e306e3b8e1
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Oct 28 11:08:38 2014 +0200

update copyright
---
 debian/copyright | 52 
 1 file changed, 52 insertions(+)

diff --git a/debian/copyright b/debian/copyright
index 03cb21c..77de81a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -10,10 +10,62 @@ Files: pkg/SUNWfastinfoset/*
 Copyright: 2004, Sun Microsystems, Inc.
 License: Apache-2.0
 
+Files: performance/FpMLFIpex/data/FpML/xmldsig-core-schema.xsd
+Copyright: 2001, The Internet Society and W3C
+License: W3C
+ This W3C work (including software, documents, or other related items) is
+ being provided by the copyright holders under the following license. By
+ obtaining, using and/or copying this work, you (the licensee) agree that
+ you have read, understood, and will comply with the following terms and
+ conditions:
+ .
+ Permission to use, copy, modify, and distribute this software and its
+ documentation, with or without modification, for any purpose and without
+ fee or royalty is hereby granted, provided that you include the
+ following on ALL copies of the software and documentation or portions
+ thereof, including modifications, that you make:
+ .
+  1. The full text of this NOTICE in a location viewable to users of the
+  redistributed or derivative work.
+ .
+  2. Any pre-existing intellectual property disclaimers, notices, or terms
+  and conditions. If none exist, a short notice of the following form
+  (hypertext is preferred, text is permitted) should be used within the
+  body of any redistributed or derivative code: Copyright ©
+  [$date-of-software] World Wide Web Consortium, (Massachusetts Institute
+  of Technology, Institut National de Recherche en Informatique et en
+  Automatique, Keio University). All Rights Reserved.
+  http://www.w3.org/Consortium/Legal/;
+ .
+  3. Notice of any changes or modifications to the W3C files, including
+  the date changes were made. (We recommend you provide URIs to the
+  location from which the code is derived.)
+ .
+ THIS SOFTWARE AND DOCUMENTATION IS PROVIDED AS IS, AND COPYRIGHT
+ HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS
+ FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR
+ DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS,
+ TRADEMARKS OR OTHER RIGHTS.
+ .
+ COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
+ OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
+ DOCUMENTATION.
+ .
+ The name and trademarks of copyright holders may NOT be used in
+ advertising or publicity pertaining to the software without specific,
+ written prior permission. Title to copyright in this software and any
+ associated documentation will at all times remain with copyright
+ holders.
+
 Files: debian/*
 Copyright: 2013, Ade Lee a...@redhat.com
 License: Apache-2.0
 
 License: Apache-2.0
+ The license for the source is mentioned on the project web page
+ (http://fi.java.net) as ASL 2.0 at the time of initial packaging,
+ the source itself ships no license file.
+ .
  On Debian systems, the full text of the Apache-2.0 license
  can be found in the file '/usr/share/common-licenses/Apache-2.0'

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/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

[jackson-jaxrs-providers] 04/05: bump policy

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit 4e643c760451991ef6aa9ce920dcb5ca3b611849
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 18:06:51 2014 +0300

bump policy
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 3506b0c..2f62f70 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends-Indep:
  libjackson2-dataformat-smile (= 2.4.2),
  libjackson2-module-jaxb-annotations-java (= 2.4),
  libjsr311-api-java,
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/pkg-java/jackson-jaxrs-providers.git
 Vcs-Browser: 
http://anonscm.debian.org/cgit/pkg-java/jackson-jaxrs-providers.git
 Homepage: http://wiki.fasterxml.com/JacksonHome

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] 01/05: don't require the parent

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit fa4c5792451f9ca87d30122db0e4edd108925a4e
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:57:01 2014 +0300

don't require the parent
---
 debian/control   | 1 -
 debian/libjackson2-jaxrs-providers-java.poms | 2 +-
 debian/maven.rules   | 1 -
 3 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 4bae77d..a5837cc 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,6 @@ Build-Depends-Indep:
  libjackson2-core-java (= 2.4.2),
  libjackson2-databind-java (= 2.4.2),
  libjackson2-dataformat-smile (= 2.4.2),
- libjackson2-parent-java (= 2.4),
  libjackson2-module-jaxb-annotations-java (= 2.4),
  libjsr311-api-java,
 Standards-Version: 3.9.5
diff --git a/debian/libjackson2-jaxrs-providers-java.poms 
b/debian/libjackson2-jaxrs-providers-java.poms
index 4659549..a7dd0cb 100644
--- a/debian/libjackson2-jaxrs-providers-java.poms
+++ b/debian/libjackson2-jaxrs-providers-java.poms
@@ -25,7 +25,7 @@
 #   --site-xml=location: Optional, the location for site.xml if it needs to 
be installed.
 # Empty by default. [mh_install]
 #
-pom.xml --has-package-version
+pom.xml --no-parent --has-package-version
 base/pom.xml --has-package-version
 cbor/pom.xml --ignore
 json/pom.xml --has-package-version
diff --git a/debian/maven.rules b/debian/maven.rules
index f8b998c..c1f2648 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,5 +1,4 @@
 
-com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-base * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-smile-provider * s/2\..*/2.x/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] branch master updated (376ab24 - bf6c04f)

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-jaxrs-providers.

  from  376ab24   enable smile provider
   new  fa4c579   don't require the parent
   new  de2b48c   fix my email address
   new  f4b75c5   add the itp bug#
   new  4e643c7   bump policy
   new  bf6c04f   releasing package jackson-jaxrs-providers version 2.4.2-1

The 5 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/changelog | 6 +++---
 debian/control   | 5 ++---
 debian/libjackson2-jaxrs-providers-java.poms | 2 +-
 debian/maven.rules   | 1 -
 4 files changed, 6 insertions(+), 8 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] 03/05: add the itp bug#

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit f4b75c54e15ae9fbb5545ab3fb40ffec9e38aca1
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 18:06:34 2014 +0300

add the itp bug#
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index f75439a..d3b6e2f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
 jackson-jaxrs-providers (2.4.2-1) UNRELEASED; urgency=medium
 
-  * Initial release (Closes: #)
+  * Initial release (Closes: #762697)
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 09 Sep 2014 00:28:45 +0300

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-module-jaxb-annotations] 01/03: use bundle instead of * in rules

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-module-jaxb-annotations.

commit 601417dc8a53404643631543b02c90274a54c65b
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:49:08 2014 +0300

use bundle instead of * in rules
---
 debian/maven.publishedRules | 2 +-
 debian/maven.rules  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index 0db6752..6fe498e 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -1,2 +1,2 @@
 
-com.fasterxml.jackson.module jackson-module-jaxb-annotations * s/2\..*/2.x/ * *
+com.fasterxml.jackson.module jackson-module-jaxb-annotations bundle 
s/2\..*/2.x/ * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 76dd62d..541cee9 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,4 +1,4 @@
 
 com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind jar s/2\..*/2.x/ * *
-com.fasterxml.jackson.module jackson-module-jaxb-annotations * s/2\..*/2.x/ * *
+com.fasterxml.jackson.module jackson-module-jaxb-annotations bundle 
s/2\..*/2.x/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-jaxrs-providers] annotated tag debian/2.4.2-1 created (now f65b107)

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/2.4.2-1
in repository jackson-jaxrs-providers.

at  f65b107   (tag)
   tagging  bf6c04f6810d85b1d0067815f56eff7bf9e765a7 (commit)
 tagged by  Timo Aaltonen
on  Wed Sep 24 18:25:49 2014 +0300

- Log -
tagging package jackson-jaxrs-providers version debian/2.4.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUIuJ9AAoJEMtwMWWoiYTcE+AQAJP+98sRL/VWn9RePQ/fC/4/
aQjalLnMw3TOCnLq6K3ZpsKvlZBRPK6UF3fpL5Hpbz/yFGS3KGiuX/QEDJym5Zvw
Ll9DZw4lLQMXAfaQNy1JkMt3qiZ1LvGndrrAKm++yNF//MV4Cs8MkwvbcLt8jkyL
pTBE0D5LlvZXLpdleY2naR1Ph1DPTI43yO1h40JY2qHFK6Sju+QSjxRi3YBW/ecp
IU+5PSoMAPnYEFZuVr7UJaMZeKUDLJFf1KhGRIVZH3GEbLCf+Yt8fYsUZTdhDf6J
MmcqsoevIgvhB0n/vJ0F74MMy++J7g/hFeTn/7Jog7zyORLuqkMHQIfmCXNTyf+p
wJvyEJ7gTL2NBqg1Q6iTekO1r+QKoNWt+Mqktd/6XCh7VdciUhzqUYVvvh43W2Fw
ptROmSLvcqTyKjcOaUyFhw7C3sUuHdIZptS6ntXC24kg3aLQwyhMHWzwA0Df80kB
TfO+u+ILFr4PuW2Ma2hMKzA38LZp0HxOqxjm+JtqCQGzwrP+I2+4rD3yqhaPTLJ4
SU+fKccyazd/weRPCywX0OlDSoeP3IIIvstqH6m9o0IK+900zsEr9N3dQO1m1lLg
PwHxJxpVLCQYHXqvHPUkermv7ry28vrWnmHyll4Lo4X+gj2/cCpCp9FCweErn5FL
7VUC40Wdxaq3482e53Qu
=Wymx
-END PGP SIGNATURE-

Christoffer Eide (1):
  Added .idea folder to gitignore

Lars Pfannenschmidt (1):
  Enables jackson to use the jax-rs 2.0 api within OSGi

Lukasz Dywicki (1):
  Improvements in OSGi manifest generation. Fixes #29.

Steven Schlansker (2):
  Test case showing that JSON serialization without FLUSH_AFTER_WRITE_VALUE 
fails.
  Ensure that ProviderBase closes JsonGenerator.

Tatu (5):
  Remove unnecessary copyright comment
  Merge branch 'master' of 
https://github.com/FasterXML/jackson-jaxrs-providers
  Merge branch 'master' of 
https://github.com/FasterXML/jackson-jaxrs-providers
  Merge branch 'master' of 
https://github.com/FasterXML/jackson-jaxrs-providers
  Update README to denote annotations usable on endpoints

Tatu Saloranta (149):
  Initial commit
  start implementing
  ...
  Fixing build issues for json provider
  first version with full json provider
  add skeletal xml provider as well
  change smile dep; no 2.2.0-snapshot yet
  Add skeletal version template
  ..
  Clean up tests
  add Woodstox dependency
  ...
  Create a shared package; will move things in there soon
  javadoc changes
  ...
  Fix [JACKSON-891] in this project as well (from 2.1.5)
  refactoring
  More refactoring
  Refactoring
  ...
  refactor...
  ... refactor
  ...
  refactoring
  Yet more refactoring
  More refactoring, centralizing `Annotations` enumeration
  Add unit tests for #5
  Implemented #1, allowing JsonParser as input to bind to
  add skeletal version BeanProperty impl for endpoints
  trying to add integration tests
  Merge pull request #7 from eiden/add-idea-folder-to-gitignore
  refactoring tests to try real integration testing...
  Merge branch 'master' of github.com:FasterXML/jackson-jaxrs-providers
  ...
  ...
  update release notes
  prepare for rc1
  ...
  ...
  [maven-release-plugin] prepare release jackson-jaxrs-providers-2.2.0-rc1
  Funking Maven/Nexus, need to retry release manually
  [maven-release-plugin] prepare release 2.2.0-rc1-b
  ... once more
  [maven-release-plugin] prepare release 2.2.0-rc1-c
  [maven-release-plugin] prepare for next development iteration
  ...
  prepare for 2.2.0
  [maven-release-plugin] prepare release jackson-jaxrs-providers-2.2.0
  [maven-release-plugin] prepare for next development iteration
  Fixed #9, accidental compile-time dep to Jetty
  [maven-release-plugin] prepare release 2.2.0b
  Merge branch 'master' of github.com:FasterXML/jackson-jaxrs-providers
  [maven-release-plugin] prepare for next development iteration
  [maven-release-plugin] prepare release 2.2.0c
  [maven-release-plugin] prepare for next development iteration
  Merge pull request #8 from stevenschlansker/ser-no-flush
  ...
  Add ctor for issue #10
  Merge branch 'master' of github.com:FasterXML/jackson-jaxrs-providers
  preparing for 2.2.1
  ...
  [maven-release-plugin] prepare release jackson-jaxrs-providers-2.2.1
  [maven-release-plugin] prepare for next development iteration
  Trying to fix #11, problems with caching of ObjectReaders/-Writers
  update release notes
  Fixed #12
  comment out a debug statement from a test
  Fixed #14
  fix comment wrt earlier fix
  prepare for 2.2.2
  [maven-release-plugin] prepare release jackson-jaxrs-providers-2.2.2
  [maven-release-plugin] prepare for next development iteration
  Merge pull request #15 from logoff/master
  Fix #18
  Implement #19, `InputStream` should

[jackson-module-jaxb-annotations] 03/03: releasing package jackson-module-jaxb-annotations version 2.4.2-1

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-module-jaxb-annotations.

commit 32f887ab9a7f8476b4ce3d6ed2c688e364d136d0
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 18:20:03 2014 +0300

releasing package jackson-module-jaxb-annotations version 2.4.2-1
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b08300e..1d78bd6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-jackson-module-jaxb-annotations (2.4.2-1) UNRELEASED; urgency=medium
+jackson-module-jaxb-annotations (2.4.2-1) unstable; urgency=medium
 
   * Initial release (Closes: #758154)
 
- -- Timo Aaltonen tjaal...@ubuntu.com  Thu, 03 Jul 2014 11:39:42 +0300
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 24 Sep 2014 18:19:51 +0300

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-module-jaxb-annotations] 02/03: bump policy

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-module-jaxb-annotations.

commit 43620cc74137368e5b9c78c7b133bb8a6d7f207e
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:49:28 2014 +0300

bump policy
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 4ff95aa..87ccb97 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends-Indep:
  libmaven-bundle-plugin-java,
  libmaven-enforcer-plugin-java,
  libmaven-site-plugin-java
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/pkg-java/jackson-module-jaxb-annotations.git
 Vcs-Browser: 
http://anonscm.debian.org/gitweb/?p=pkg-java/jackson-module-jaxb-annotations.git
 Homepage: http://wiki.fasterxml.com/JacksonJAXBAnnotations

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-jaxrs-providers] 05/05: releasing package jackson-jaxrs-providers version 2.4.2-1

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit bf6c04f6810d85b1d0067815f56eff7bf9e765a7
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 18:25:49 2014 +0300

releasing package jackson-jaxrs-providers version 2.4.2-1
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d3b6e2f..812fb58 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-jackson-jaxrs-providers (2.4.2-1) UNRELEASED; urgency=medium
+jackson-jaxrs-providers (2.4.2-1) unstable; urgency=medium
 
   * Initial release (Closes: #762697)
 
- -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 09 Sep 2014 00:28:45 +0300
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 24 Sep 2014 18:25:38 +0300

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] 02/05: fix my email address

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit de2b48c49588b08b29b97cc0a428a53961868d73
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:57:16 2014 +0300

fix my email address
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index a5837cc..3506b0c 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: jackson-jaxrs-providers
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
-Uploaders: Timo Aaltonen tjaal...@ubuntu.com
+Uploaders: Timo Aaltonen tjaal...@debian.org
 Build-Depends: debhelper (= 9), default-jdk, maven-debian-helper (= 1.5),
  xmlstarlet,
 Build-Depends-Indep:

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-module-jaxb-annotations] branch master updated (53a55f8 - 32f887a)

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-module-jaxb-annotations.

  from  53a55f8   trim changelog
   new  601417d   use bundle instead of * in rules
   new  43620cc   bump policy
   new  32f887a   releasing package jackson-module-jaxb-annotations version 
2.4.2-1

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/changelog| 4 ++--
 debian/control  | 2 +-
 debian/maven.publishedRules | 2 +-
 debian/maven.rules  | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-module-jaxb-annotations] annotated tag debian/2.4.2-1 created (now 5ff130c)

2014-10-28 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/2.4.2-1
in repository jackson-module-jaxb-annotations.

at  5ff130c   (tag)
   tagging  32f887ab9a7f8476b4ce3d6ed2c688e364d136d0 (commit)
 tagged by  Timo Aaltonen
on  Wed Sep 24 18:20:03 2014 +0300

- Log -
tagging package jackson-module-jaxb-annotations version debian/2.4.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUIuEjAAoJEMtwMWWoiYTcdWMP/0h4fxV5p0gxBmpOo+kdbh9Z
IKdjHHJPl3wso7kwsWaFBSJyZx+HlIG15A3ZldpQLZkf+riDPKbbjAFrV1KVzoHX
MbXC9WVFr0Jekag3OsueNi021snH+fhrkbfvc3BqKxIQSBS/AKfw4/FA6XjI4E3u
5qU1Uy6NYZAVvojj7YeS57LIKht6HBQVx540i0PEKrhnnfI7j5p+ZAwibAzA++Am
0yttcgDdsZAu33JpCuxfBoSZLHMPxWcwI3Ee/5EZ5t8K3qK/PJvyarQI4ymWd1Xw
F3yeHuVuWQV6vGqrEy0JMl5rixT5DtnqA03LeBEPt7dAKs4XQ2uzkRxBZiZi1lF8
01VzbLFG+FEu5wyIKv2xIdRhIJFqQSK6NC82jB1EA8/RpnsuTetu/xjifBTnK641
VmvYionPoZ60BDOH9IdNQtt25VcVcTqsTtq+A7kgpoHZw4yGP1J2KrC7wBkMtQS7
5PZxlNyZYa49BNBTpc3JsXZilIR/oPc/Cp4E1xUyyQgs5Qgq/9T44Aun1jDOzgIg
K+Kgw47GlApxf/ClJcSbRrxp0jiNN61h/c0KiJgwuzQbnMkFLpb00peoSP4VUpFt
FxU7qkPIPfZBsV1QtLwsv/KNC3GGi4paQxC5uYdw7iU91l3l4sXHNPPvvMPxjTUG
aNEg50pZcbUBdV3syKz3
=aMsT
-END PGP SIGNATURE-

Andrey Stolyarchuk (1):
  Types matching fixed for XmlAdapter.

Artur Dryomov (1):
  Use syntax highlighting in the readme file.

James Rawlings (1):
  Implemented the hasRequiredMarker method by inspecting the required

Lukasz Dywicki (1):
  Improvements in OSGi manifest generation. Fixes #23.

Tatu (6):
  Add one missing osgi-dep (to newly added SimpleModule)
  Updated to work on latest databind 2.0.0 snapshot
  javadoc cleanup
  minor cleanup
  Fix a prob with findSerializationSortAlphabetically overload added in 2.4
  fixes to annotation introspector

Tatu Saloranta (182):
  First commit
  ...
  Add code...
  Add module, refactory to multiple small packages
  Starting to convert to use new 2.0.0 core, databind
  Merge branch 'master' of 
github.com:FasterXML/jackson-module-jaxb-annotations
  Completed conversion to use jackson core/databind 2.0.0-snapshot
  add unit test report generation
  Update JAXB 2.0.0-snapshot module with latest core bundles
  Add verison support
  Fix version handling
  Update with latest databind changes
  Minor fixes based on core/annotation changes
  Yet more changes for jackson-databind 2.0
  Update group id, 2.0.0 compatibility
  Once again, update to sync with databind 2.0
  Add unit test for [JACKSON-722]
  Fix [JACKSON-722]
  Sync up changes related to TreeNode/JsonNode
  Cleaned up XmlAdapter handlers by using contextual variants to do proper 
resolutions
  ...
  Upgrade once again to work with latest 2.0.0 snapshot
  ...
  ...
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.0-RC1
  [maven-release-plugin] prepare for next development iteration
  ...
  ...
  ...
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.0-RC2
  [maven-release-plugin] prepare for next development iteration
  Implemement [Issue-2]: Support @XmlID, @XxmlIDREF
  minor java doc fixes
  ...
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.0-RC3
  [maven-release-plugin] prepare for next development iteration
  Prepare for release
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.0
  [maven-release-plugin] prepare for next development iteration
  ...
  Merge pull request #5 from rawlingsj/master
  prepare for 2.0.1 release (jdk 1.5)
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.1
  [maven-release-plugin] prepare for next development iteration
  ...
  get ready for 2.0.2 release
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.2
  [maven-release-plugin] prepare for next development iteration
  ...
  Fixed [Issue-7], handling of @XmlElementWrapper precedence
  Merge pull request #8 from stolyarchukav/master
  prepare for release
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.3
  [maven-release-plugin] prepare for next development iteration
  ...
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.4
  [maven-release-plugin] prepare for next development iteration
  Add unit tests for [Issue-10]
  Add a test to reproduce [Issue-9]
  Minor tweaks to the new unit test; fix will require 2.0.5 of core 
components
  prepare for 2.0.5 release
  ...
  [maven-release-plugin] prepare release 
jackson-module-jaxb-annotations-2.0.5
  [maven-release-plugin] prepare for next development iteration
  update README.md

[resteasy] 01/06: Merge branch 'upstream'

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit b0b785b9e62870bc615a4c00f029ed7fae51b453
Merge: c300a6b 156491d
Author: Timo Aaltonen tjaal...@debian.org
Date:   Thu Oct 9 15:43:32 2014 +0300

Merge branch 'upstream'

 .project   |   17 -
 jaxrs/arquillian/RESTEASY-736-as71/pom.xml |4 +-
 jaxrs/arquillian/RESTEASY-736-jetty/pom.xml|4 +-
 jaxrs/arquillian/RESTEASY-760-jetty/pom.xml|4 +-
 jaxrs/arquillian/RESTEASY-800-AS71/pom.xml |2 +-
 jaxrs/arquillian/ValidationTest-AS7/pom.xml|2 +-
 .../resteasy/test/validation/TestValidation.java   |   57 +-
 jaxrs/arquillian/ValidationTest-WF8/pom.xml|2 +-
 .../validation/TestResourceLazyValidator.java  |   25 +-
 .../TestExecutableValidationDisabled.java  |   20 +-
 .../TestGetterReturnValueNotValidated.java |6 -
 .../validation/TestGetterReturnValueValidated.java |   16 +-
 .../test/validation/TestLazyValidator.java |2 -
 .../resteasy/test/validation/TestValidation.java   |   62 +-
 jaxrs/arquillian/ValidationTest/pom.xml|2 +-
 jaxrs/arquillian/pom.xml   |2 +-
 jaxrs/arquillian/resteasy-cdi-ejb-test/pom.xml |2 +-
 jaxrs/as7-integration-testing/cdi-test/pom.xml |2 +-
 jaxrs/as7-integration-testing/modules-test/pom.xml |2 +-
 jaxrs/as7-integration-testing/pom.xml  |2 +-
 .../application-test/pom.xml   |4 +-
 .../{application-test = cdilocator-test}/pom.xml  |   15 +-
 .../org/jboss/resteasy/tests/TestResource.java |   61 +
 .../main/java/org/jboss/resteasy/tests/TheApp.java |   24 +
 .../src/main/webapp/WEB-INF/beans.xml  |3 +
 .../src/main/webapp/WEB-INF/web.xml|7 +
 .../org/jboss/resteasy/tests/ApplicationTest.java  |   50 +
 .../pom.xml|   13 +-
 .../jboss/resteasy/tests/ScannedApplication.java   |   19 +
 .../org/jboss/resteasy/tests/SingletonLocalIF.java |   13 +
 .../resteasy/tests/SingletonRootResource.java  |   66 +
 .../jboss/resteasy/tests/SingletonSubResource.java |   19 +
 .../jboss/resteasy/tests/SingletonTestBean.java|   30 +
 .../src/main/webapp/WEB-INF/web.xml|7 +
 .../org/jboss/resteasy/tests/ApplicationTest.java  |   39 +
 jaxrs/as8-integration-testing/pom.xml  |6 +-
 jaxrs/as8-mavenized-distro/pom.xml |2 +-
 jaxrs/as8-resteasy/pom.xml |4 +-
 .../async-http-servlet-3.0-test/pom.xml|   11 +-
 .../test/async/AsyncResponseBlockingQueue.java |   15 +
 .../jboss/resteasy/test/async/JaxrsResource.java   |   44 +-
 .../java/org/jboss/resteasy/test/async/MyApp.java  |   29 +-
 .../resteasy/test/async/MyTimeoutHandler.java  |   32 +
 .../org/jboss/resteasy/test/async/Resource.java|  214 +
 .../async/ServiceUnavailableExceptionMapper.java   |   22 +
 .../org/jboss/resteasy/test/async/XmlData.java |   35 +
 .../src/main/webapp/WEB-INF/web.xml|1 +
 .../org/jboss/resteasy/test/async/AsyncTest.java   |   60 +-
 .../test/async/ComprehensiveJaxrsTest.java |  483 ++
 .../jboss/resteasy/test/async/JaxrsAsyncTest.java  |   71 +-
 .../async-http-servlet-3.0/pom.xml |2 +-
 .../plugins/server/servlet/Filter30Dispatcher.java |8 +-
 .../server/servlet/HttpServlet30Dispatcher.java|8 +-
 .../server/servlet/Servlet3AsyncHttpRequest.java   |  103 +-
 .../pom.xml|   15 +-
 .../async/callback/AsyncResponseBlockingQueue.java |   15 +
 .../test/async/callback/CallbackResource.java  |  175 +
 .../callback/ExceptionThrowingStringBean.java  |   16 +
 .../resteasy/test/async/callback/JaxrsUtil.java|  113 +
 .../jboss/resteasy/test/async/callback/MyApp.java  |   16 +
 .../test/async/callback/MyTimeoutHandler.java  |   32 +
 .../resteasy/test/async/callback/Resource.java |  188 +
 .../callback/SecondSettingCompletionCallback.java  |   28 +
 .../async/callback/SettingCompletionCallback.java  |   25 +
 .../resteasy/test/async/callback/StringBean.java   |   23 +
 .../async/callback/StringBeanEntityProvider.java   |   57 +
 .../callback-test/src/main/webapp/WEB-INF/web.xml  |   21 +
 .../jboss/resteasy/test/async/CallbackTest.java|  133 +
 .../src/test/resources/jndi.properties |3 +
 .../callback-test/src/test/resources/log4j.xml |   68 +
 jaxrs/async-http-servlet-3.0/pom.xml   |3 +-
 jaxrs/distribution/assembly.xml|   15 +
 jaxrs/distribution/pom.xml |   22 +-
 jaxrs/distribution/src-distribution/pom.xml|2 +-
 jaxrs/docbook/pom.xml  |2 +-
 jaxrs/docbook/reference/en/en-US/master.xml|8 +-
 .../en

[resteasy] branch master updated (c300a6b - f1639c0)

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository resteasy.

  from  c300a6b   releasing package resteasy version 3.0.1-1
  adds  ff6509e   version bump
  adds  2a7d058   Range and Content-Range headers must start with bytes
  adds  5d96260   Merge pull request #338 from wbowling/content-range
  adds  bd9b7fc   Asynch dispatch timeout cases distinguished (with status 
code 503) from processing errors (500)
  adds  135266c   Timeout error cases distinguished (with status code 503, 
server is busy) from processing errors (500) in asynchronous dispatcher
  adds  2dd90cf   Merge branch 'master' of 
https://github.com/szdeak/Resteasy
  adds  8d2d58c   Merge pull request #340 from szdeak/master
  adds  c74dacd   Fix for https://issues.jboss.org/browse/RESTEASY-864 
Check value for null before trying to convert to string
  adds  86a51c6   Merge pull request #342 from Arvoreen/master
  adds  7aa9640   Addition of HttpUrlConnection engine for resteasy-client
  adds  4d897c7   Added some comments and code cleanup
  adds  734e86e   Merge pull request #343 from alexogar/master
  adds  25d6a8e   Merge remote-tracking branch 'upstream/master'
  adds  56b888a   async
  adds  0f63fa6   async fixes
  adds  8981fb1   async fixes
  adds  36477c0   Merge pull request #345 from patriot1burke/master
  adds  62c5d3f   add netty to bom
  adds  31e3fb1   add to bom
  adds  9044f28   Merge pull request #348 from patriot1burke/master
  adds  c6f34a1   url connection fixes
  adds  2c03f41   Merge pull request #350 from patriot1burke/master
  adds  789535a   RESTEASY-900: Return text representation of validation 
violations.
  adds  40aa244   validator fixes
  adds  42d8dfd   Merge pull request #351 from patriot1burke/master
  adds  8d29a1f   forward
  adds  49be4c8   Merge pull request #353 from patriot1burke/master
  adds  3e7e6f4   Merge https://github.com/resteasy/Resteasy
  adds  94af81f   Merge pull request #354 from ronsigal/master
  adds  2b83e5d   version bump
  adds  00bb288   async fixes
  adds  ad4a086   async tests
  adds  5061d37   more tests
  adds  a356261   json web encryption support
  adds  89a34d9   Merge pull request #358 from patriot1burke/master
  adds  eb1579d   Merge pull request #359 from patriot1burke/master
  adds  3cb6883   Merge pull request #360 from patriot1burke/master
  adds  616fac4   [RESTEASY-881]
  adds  2f1be86   Added jackson-module-jaxb-annotations v2.2.1 dependency 
for the JBoss modules generation.
  adds  354fbf8   Merge pull request #357 from esarbanis/RESTEASY-881
  adds  aeb99e6   Updated validation documentation.
  adds  9a4b64d   Merge pull request #355 from ronsigal/master
  adds  030d30d   Fixed condition for response filter iteration.
  adds  a9ab32e   Merge pull request #356 from esarbanis/master
  adds  24194c6   using jboss-annotations-api_1.1_spec instead of jsr250-api
  adds  94968e5   Merge pull request #361 from liweinan/jsr250
  adds  2b93733   Netty 4 server adapter
  adds  f9b9556   Merge pull request #362 from krisskross/netty4
  adds  b406c76   Merge remote-tracking branch 'upstream/master'
  adds  03f4a21   fix typo on PR
  adds  fd0e08d   bump pom.xml
  adds  c1c0c86   undertow
  adds  c1eaad5   servlet container intializer
  adds  c311231   update
  adds  d67688c   oreilly2 and maven-compiler-plugin update
  adds  9a019da   link jaxb fix, oreilly examples update
  adds  f7a94c1   Corrections from netty4 review by Norman
  adds  fc68f93   Changed request handler to SimpleChannelInboundHandler
  adds  0952590   Merge pull request #364 from patriot1burke/master
  adds  7ba2715   Merge pull request #366 from patriot1burke/master
  adds  29b0a8b   use hibernate-jpa-2.0-api instead of persistence-api
  adds  d9aa218   Merge pull request #363 from 
liweinan/hibernate-jpa-2.0-api
  adds  a288f6b   Merge remote-tracking branch 'upstream/master' into netty4
  adds  14d0f0d   Merge pull request #365 from krisskross/netty4
  adds  f5e8ed6   Merge pull request #369 from patriot1burke/master
  adds  d6e8dce   Upgrade el to 1.0_02.CR6
  adds  9d295b0   Merge pull request #368 from 
liweinan/upgrade-jboss-el-to-CR6
  adds  9bf012d   RESTEASY-699
  adds  c99214a   RESTEASY-699: Remove file r0.
  adds  4d042e6   Merge remote-tracking branch 'origin/master_RESTEASY_699'
  adds  d6eb8cf   RESTEASY-699: Correct typo in MediaTypeHeaderDelegate.
  adds  1621e3d   RESTEASY-916: Adding XML and JSON formats for validation 
violation reports.
  adds  d684b9b   RESTEASY-916: XML and JSON for 
resteasy-hibernatevalidator-provider
  adds  5b54d67   RESTEASY-916: Updated validation chapter in Resteasy 
documentation.
  adds  

[resteasy] annotated tag debian/3.0.6-1 created (now 8ccd9c1)

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/3.0.6-1
in repository resteasy.

at  8ccd9c1   (tag)
   tagging  f1639c0a6e4837f213cf247a009a4c101b559580 (commit)
  replaces  debian/3.0.1-1
 tagged by  Timo Aaltonen
on  Fri Oct 17 18:29:58 2014 +0300

- Log -
tagging package resteasy version debian/3.0.6-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUQTX2AAoJEMtwMWWoiYTc5CwQAJj4EG1OkQ1bznF6S68g6cM2
ZqMvfQfXEmzHzO3jy8WEm8n8f56kvM4BtobK8Q8SMudYBV68nh3H9YQSgMsjQCGB
WatcW3z/nURY3q314Ts6IO9DfoQqELRd/IXlre8UJnUPHsf+b0mk2Z48tzw4v8cr
gwYseyOhhGlYMnplk3RiSqd1iZ88+3vjvrp/TS5PpustAglou+gsHwu6mhsHqQOf
ZCNRUtGvqNcEwCg0S9w9j9iUyFnSPWUhOhdDaFbM1Zdc7WlCm1e/rgWkDPxgLHYO
0JbkyX858YASaNZ/bWp1AkhzMCQ98MXDJIlZI4bco45ZTFYY/T5yZzfRid2YZGQz
D3HYBnsmUdygzWTH1/ID1Lr5Yq6WOWrkbtcRJJYNv4NW6wwZEePhk8hCD5fc1UAV
qzfSK3N4j/sng5RJBDw91xSufQntfS6SsUeO1/es0eYcCC9PKAHqofcs5tOBeyFj
erZdEqMZIxLcAqfQOxeuIJXf8OCqJEZo245qzyf6QTSDrT/GMc0sZAhtfXA+CMWx
Jvi99KRFWCMAairoXwf48QsNY6D+ciutAJg8ymOPa2p7/lkvkAgsjmc7q8XFyGaV
8BmnWzcoI73uSJh5Nnnr6Dv9UuTbu/ZItPt7m9Ivt+p5Nj5RCWirqVr/5IfN2cGd
vlg96UP1X+lQHlsT8nN1
=Ndqk
-END PGP SIGNATURE-

Aleksei Ogarkov (2):
  Addition of HttpUrlConnection engine for resteasy-client
  Added some comments and code cleanup

Anthony Whitford (8):
  RESTEASY-980 Corrected scm element in pom to reference Git (not 
Subversion).
  Change the default scope for junit to be test scope.
  Change the default scope for junit to be test scope.
  Servlet API should be Provided scope.
  REASTEASY-180 Plugin declaration cleanup.
  servlet-api dependency was declared twice
  RESTEASY-982 Moved the signed.txt files under target.
  Upgraded SLF4J and tweaked dependencies.

Bill Burke (132):
  version bump
  Merge pull request #338 from wbowling/content-range
  Merge pull request #340 from szdeak/master
  Merge pull request #342 from Arvoreen/master
  Merge pull request #343 from alexogar/master
  Merge remote-tracking branch 'upstream/master'
  async
  async fixes
  async fixes
  Merge pull request #345 from patriot1burke/master
  add netty to bom
  add to bom
  Merge pull request #348 from patriot1burke/master
  url connection fixes
  Merge pull request #350 from patriot1burke/master
  validator fixes
  Merge pull request #351 from patriot1burke/master
  forward
  Merge pull request #353 from patriot1burke/master
  Merge pull request #354 from ronsigal/master
  version bump
  async fixes
  Merge pull request #358 from patriot1burke/master
  async tests
  Merge pull request #359 from patriot1burke/master
  more tests
  Merge pull request #360 from patriot1burke/master
  Merge pull request #357 from esarbanis/RESTEASY-881
  Merge pull request #355 from ronsigal/master
  Merge pull request #356 from esarbanis/master
  Merge pull request #361 from liweinan/jsr250
  Merge pull request #362 from krisskross/netty4
  json web encryption support
  Merge remote-tracking branch 'upstream/master'
  fix typo on PR
  bump pom.xml
  Merge pull request #364 from patriot1burke/master
  undertow
  Merge pull request #366 from patriot1burke/master
  Merge pull request #363 from liweinan/hibernate-jpa-2.0-api
  Merge pull request #365 from krisskross/netty4
  servlet container intializer
  update
  oreilly2 and maven-compiler-plugin update
  Merge pull request #369 from patriot1burke/master
  Merge pull request #368 from liweinan/upgrade-jboss-el-to-CR6
  Merge pull request #371 from ronsigal/master
  Merge pull request #370 from krisskross/master
  link jaxb fix, oreilly examples update
  Merge remote-tracking branch 'upstream/master'
  merge
  Merge pull request #375 from patriot1burke/master
  make JaxbLink.setUri private
  fix matching bug
  Merge pull request #377 from patriot1burke/master
  Merge pull request #374 from esarbanis/RESTEASY-763
  Merge pull request #376 from ronsigal/master
  oreilly examples
  Merge pull request #381 from patriot1burke/master
  Merge pull request #378 from 
juergenzimmermann/internalionalized_validation
  Merge pull request #380 from ronsigal/master
  orielly example changes
  oreilly examples
  Merge pull request #383 from patriot1burke/master
  Merge pull request #382 from esarbanis/RESTEASY-830
  937, 939
  Merge pull request #384 from patriot1burke/master
  document JOSE and ServletContainerInitializer
  Merge pull request #385 from patriot1burke/master
  fixes
  Merge pull request #386 from patriot1burke/master
  Merge pull request #389 from esarbanis/RESTEASY-948
  Merge pull request #391 from 
juergenzimmermann

[resteasy] 04/06: libresteasy-java.poms: Ignore json-p-ee7 and resteasy-servlet- initializer.

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 4ac6d5698d5660d9fdf92912870380b2310f76f0
Author: Timo Aaltonen tjaal...@debian.org
Date:   Fri Oct 17 18:20:02 2014 +0300

libresteasy-java.poms: Ignore json-p-ee7 and resteasy-servlet- initializer.
---
 debian/changelog | 2 ++
 debian/libresteasy-java.poms | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index e308276..87e95e9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ resteasy (3.0.6-1) UNRELEASED; urgency=medium
 
   * Team upload.
   * revert-to-jsr250-api.diff: Revert a commit to fix build.
+  * libresteasy-java.poms: Ignore json-p-ee7 and resteasy-servlet-
+initializer.
 
  -- Timo Aaltonen tjaal...@debian.org  Fri, 17 Oct 2014 18:00:20 +0300
 
diff --git a/debian/libresteasy-java.poms b/debian/libresteasy-java.poms
index 86c792d..c77cebe 100644
--- a/debian/libresteasy-java.poms
+++ b/debian/libresteasy-java.poms
@@ -63,3 +63,5 @@ jaxrs/examples/pom.xml --ignore
 jaxrs/async-http-servlet-3.0/pom.xml --ignore
 jaxrs/jboss-modules/pom.xml --ignore
 jaxrs/profiling-tests/pom.xml --ignore
+jaxrs/providers/json-p-ee7/pom.xml --ignore
+jaxrs/resteasy-servlet-initializer/pom.xml --ignore

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] 06/06: releasing package resteasy version 3.0.6-1

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit f1639c0a6e4837f213cf247a009a4c101b559580
Author: Timo Aaltonen tjaal...@debian.org
Date:   Fri Oct 17 18:29:58 2014 +0300

releasing package resteasy version 3.0.6-1
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 87e95e9..db71c2b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-resteasy (3.0.6-1) UNRELEASED; urgency=medium
+resteasy (3.0.6-1) unstable; urgency=medium
 
   * Team upload.
   * revert-to-jsr250-api.diff: Revert a commit to fix build.
   * libresteasy-java.poms: Ignore json-p-ee7 and resteasy-servlet-
 initializer.
 
- -- Timo Aaltonen tjaal...@debian.org  Fri, 17 Oct 2014 18:00:20 +0300
+ -- Timo Aaltonen tjaal...@debian.org  Fri, 17 Oct 2014 18:29:12 +0300
 
 resteasy (3.0.1-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] 05/06: sort libresteasy-java.poms

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 548a269407e0d112a14ad760079a6cee336b8aa5
Author: Timo Aaltonen tjaal...@debian.org
Date:   Fri Oct 17 18:28:55 2014 +0300

sort libresteasy-java.poms
---
 debian/libresteasy-java.poms | 44 ++--
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/debian/libresteasy-java.poms b/debian/libresteasy-java.poms
index c77cebe..cd32a8f 100644
--- a/debian/libresteasy-java.poms
+++ b/debian/libresteasy-java.poms
@@ -27,41 +27,41 @@
 #
 pom.xml
 jaxrs/pom.xml --has-package-version
-jaxrs/tjws/pom.xml --has-package-version
+jaxrs/async-http-servlet-3.0/pom.xml --ignore
+jaxrs/eagledns/pom.xml --ignore
+jaxrs/examples/pom.xml --ignore
 jaxrs/jaxrs-api/pom.xml --has-package-version
-jaxrs/resteasy-test-data/pom.xml --ignore
-jaxrs/resteasy-jaxrs/pom.xml --has-package-version
-jaxrs/resteasy-client/pom.xml --has-package-version
-jaxrs/resteasy-jaxrs-testsuite/pom.xml --ignore
+jaxrs/jboss-modules/pom.xml --ignore
+jaxrs/profiling-tests/pom.xml --ignore
 jaxrs/providers/pom.xml --has-package-version
+jaxrs/providers/fastinfoset/pom.xml --ignore
 jaxrs/providers/jaxb/pom.xml --has-package-version
 jaxrs/providers/jettison/pom.xml --has-package-version
-jaxrs/providers/fastinfoset/pom.xml --ignore
-jaxrs/providers/test-all-jaxb/pom.xml --ignore
 jaxrs/providers/jackson/pom.xml --has-package-version
 jaxrs/providers/jackson2/pom.xml --ignore
-jaxrs/providers/test-jackson-jaxb-coexistence/pom.xml --ignore
-jaxrs/providers/resteasy-atom/pom.xml --has-package-version
+jaxrs/providers/json-p-ee7/pom.xml --ignore
 jaxrs/providers/multipart/pom.xml --ignore
-jaxrs/providers/yaml/pom.xml --has-package-version
-jaxrs/providers/resteasy-html/pom.xml --has-package-version
-jaxrs/providers/test-resteasy-html/pom.xml --ignore
+jaxrs/providers/resteasy-atom/pom.xml --has-package-version
 jaxrs/providers/resteasy-hibernatevalidator-provider/pom.xml --ignore
+jaxrs/providers/resteasy-html/pom.xml --has-package-version
 jaxrs/providers/resteasy-validator-provider-11/pom.xml --ignore
+jaxrs/providers/test-all-jaxb/pom.xml --ignore
+jaxrs/providers/test-jackson-jaxb-coexistence/pom.xml --ignore
+jaxrs/providers/test-resteasy-html/pom.xml --ignore
+jaxrs/providers/yaml/pom.xml --has-package-version
 jaxrs/resteasy-bom/pom.xml --ignore
 jaxrs/resteasy-cache/pom.xml --ignore
+jaxrs/resteasy-cdi/pom.xml --ignore
+jaxrs/resteasy-client/pom.xml --has-package-version
 jaxrs/resteasy-guice/pom.xml --ignore
-jaxrs/eagledns/pom.xml --ignore
-jaxrs/security/pom.xml --ignore
+jaxrs/resteasy-jaxrs/pom.xml --has-package-version
+jaxrs/resteasy-jaxrs-testsuite/pom.xml --ignore
+jaxrs/resteasy-jsapi/pom.xml --ignore
 jaxrs/resteasy-links/pom.xml --ignore
 jaxrs/resteasy-spring/pom.xml --ignore
-jaxrs/resteasy-jsapi/pom.xml --ignore
-jaxrs/resteasy-cdi/pom.xml --ignore
+jaxrs/resteasy-servlet-initializer/pom.xml --ignore
+jaxrs/resteasy-test-data/pom.xml --ignore
+jaxrs/security/pom.xml --ignore
 jaxrs/server-adapters/pom.xml --ignore
+jaxrs/tjws/pom.xml --has-package-version
 jaxrs/war-tests/pom.xml --ignore
-jaxrs/examples/pom.xml --ignore
-jaxrs/async-http-servlet-3.0/pom.xml --ignore
-jaxrs/jboss-modules/pom.xml --ignore
-jaxrs/profiling-tests/pom.xml --ignore
-jaxrs/providers/json-p-ee7/pom.xml --ignore
-jaxrs/resteasy-servlet-initializer/pom.xml --ignore

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] 03/06: revert-to-jsr250-api.diff: Revert a commit to fix build.

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 47dfa3ef274cafd28e5cd10e1b10c23e8c1064d5
Author: Timo Aaltonen tjaal...@debian.org
Date:   Fri Oct 17 18:18:34 2014 +0300

revert-to-jsr250-api.diff: Revert a commit to fix build.
---
 debian/changelog |  1 +
 debian/patches/revert-to-jsr250-api.diff | 59 
 debian/patches/series|  1 +
 3 files changed, 61 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 624cb6f..e308276 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 resteasy (3.0.6-1) UNRELEASED; urgency=medium
 
   * Team upload.
+  * revert-to-jsr250-api.diff: Revert a commit to fix build.
 
  -- Timo Aaltonen tjaal...@debian.org  Fri, 17 Oct 2014 18:00:20 +0300
 
diff --git a/debian/patches/revert-to-jsr250-api.diff 
b/debian/patches/revert-to-jsr250-api.diff
new file mode 100644
index 000..fe02f58
--- /dev/null
+++ b/debian/patches/revert-to-jsr250-api.diff
@@ -0,0 +1,59 @@
+commit e3c386bd9c42b5c5005a988261f1cc8b3e61e5ce
+Author: Timo Aaltonen tjaal...@debian.org
+Date:   Fri Oct 17 17:58:52 2014 +0300
+
+Revert using jboss-annotations-api_1.1_spec instead of jsr250-api
+
+This reverts commit 24194c6f9f7ac9d358e80cad8d363ebad59d2080.
+
+diff --git a/jaxrs/pom.xml b/jaxrs/pom.xml
+index 1ecc417..53aa0d2 100755
+--- a/jaxrs/pom.xml
 b/jaxrs/pom.xml
+@@ -160,9 +160,9 @@
+ /dependency
+ 
+ dependency
+-groupIdorg.jboss.spec.javax.annotation/groupId
+-artifactIdjboss-annotations-api_1.1_spec/artifactId
+-version1.0.1.Final/version
++groupIdjavax.annotation/groupId
++artifactIdjsr250-api/artifactId
++version1.0/version
+ /dependency
+ 
+ dependency
+diff --git a/jaxrs/resteasy-jaxrs/pom.xml b/jaxrs/resteasy-jaxrs/pom.xml
+index 216b8fc..544a4f5 100755
+--- a/jaxrs/resteasy-jaxrs/pom.xml
 b/jaxrs/resteasy-jaxrs/pom.xml
+@@ -60,9 +60,9 @@
+detected runtime?
+ --
+ dependency
+-   groupIdorg.jboss.spec.javax.annotation/groupId
+-   artifactIdjboss-annotations-api_1.1_spec/artifactId
+-   /dependency
++groupIdjavax.annotation/groupId
++artifactIdjsr250-api/artifactId
++/dependency
+ 
+ !-- javax.activation.DataSource provider is required by spec --
+ dependency
+diff --git a/jaxrs/resteasy-spring/pom.xml b/jaxrs/resteasy-spring/pom.xml
+index b433b60..a47f90c 100755
+--- a/jaxrs/resteasy-spring/pom.xml
 b/jaxrs/resteasy-spring/pom.xml
+@@ -117,9 +117,9 @@
+detected runtime?
+ --
+ dependency
+-   groupIdorg.jboss.spec.javax.annotation/groupId
+-   artifactIdjboss-annotations-api_1.1_spec/artifactId
+-   /dependency
++groupIdjavax.annotation/groupId
++artifactIdjsr250-api/artifactId
++/dependency
+ 
+ !-- javax.activation.DataSource provider is required by spec --
+ dependency
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..194197c
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+revert-to-jsr250-api.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[resteasy] 02/06: update the changelog

2014-10-17 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit e7550e52ab0affcf2e22b167efb46c9316ddd982
Author: Timo Aaltonen tjaal...@debian.org
Date:   Fri Oct 17 18:17:30 2014 +0300

update the changelog
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index d4ee00e..624cb6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+resteasy (3.0.6-1) UNRELEASED; urgency=medium
+
+  * Team upload.
+
+ -- Timo Aaltonen tjaal...@debian.org  Fri, 17 Oct 2014 18:00:20 +0300
+
 resteasy (3.0.1-1) unstable; urgency=medium
 
   * Initial release (Closes: #734734)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/resteasy.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


[jellydoc] branch master updated (0f1298a - d8f4564)

2014-10-08 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jellydoc.

  from  0f1298a   add usj option to annotations jar
   new  29e9e16   Drop build-dependency on libtxw2-java-doc.
   new  285ca12   control: Bump policy to 3.9.6, no changes.
   new  d8f4564   releasing package jellydoc version 1.5-3

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/changelog | 8 
 debian/control   | 3 +--
 2 files changed, 9 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jellydoc.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


[jellydoc] 01/03: Drop build-dependency on libtxw2-java-doc.

2014-10-08 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jellydoc.

commit 29e9e167dda336a5ec6c9a2d0ecb36799a6b3e49
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Oct 8 17:04:36 2014 +0300

Drop build-dependency on libtxw2-java-doc.
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 6502106..af968ce 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+jellydoc (1.5-3) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Drop build-dependency on libtxw2-java-doc.
+
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 08 Oct 2014 16:59:41 +0300
+
 jellydoc (1.5-2) unstable; urgency=low
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 4916dc2..90b79da 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,6 @@ Build-Depends-Indep:
  libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libtxw2-java,
- libtxw2-java-doc
 Standards-Version: 3.9.3
 Homepage: http://java.net/projects/maven-jellydoc-plugin
 Vcs-Git: git://git.debian.org/git/pkg-java/jellydoc.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jellydoc.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


[jellydoc] 03/03: releasing package jellydoc version 1.5-3

2014-10-08 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jellydoc.

commit d8f4564a18a22c3ff9cad5935bbe76a0cc21a928
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Oct 8 17:05:15 2014 +0300

releasing package jellydoc version 1.5-3
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 60d1a63..45fd2c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-jellydoc (1.5-3) UNRELEASED; urgency=medium
+jellydoc (1.5-3) unstable; urgency=medium
 
   * Team upload.
   * Drop build-dependency on libtxw2-java-doc.
   * control: Bump policy to 3.9.6, no changes.
 
- -- Timo Aaltonen tjaal...@debian.org  Wed, 08 Oct 2014 16:59:41 +0300
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 08 Oct 2014 17:05:02 +0300
 
 jellydoc (1.5-2) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jellydoc.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


[jellydoc] 02/03: control: Bump policy to 3.9.6, no changes.

2014-10-08 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jellydoc.

commit 285ca129622e3fc720432c7696a355bb6e4864a3
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Oct 8 17:05:01 2014 +0300

control: Bump policy to 3.9.6, no changes.
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index af968ce..60d1a63 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ jellydoc (1.5-3) UNRELEASED; urgency=medium
 
   * Team upload.
   * Drop build-dependency on libtxw2-java-doc.
+  * control: Bump policy to 3.9.6, no changes.
 
  -- Timo Aaltonen tjaal...@debian.org  Wed, 08 Oct 2014 16:59:41 +0300
 
diff --git a/debian/control b/debian/control
index 90b79da..2598fe9 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends-Indep:
  libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libtxw2-java,
-Standards-Version: 3.9.3
+Standards-Version: 3.9.6
 Homepage: http://java.net/projects/maven-jellydoc-plugin
 Vcs-Git: git://git.debian.org/git/pkg-java/jellydoc.git
 Vcs-Browser: http://git.debian.org/?p=pkg-java/jellydoc.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jellydoc.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


[jellydoc] annotated tag debian/1.5-3 created (now 00e06d3)

2014-10-08 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/1.5-3
in repository jellydoc.

at  00e06d3   (tag)
   tagging  d8f4564a18a22c3ff9cad5935bbe76a0cc21a928 (commit)
  replaces  debian/1.5-2
 tagged by  Timo Aaltonen
on  Wed Oct 8 17:05:15 2014 +0300

- Log -
tagging package jellydoc version debian/1.5-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUNUSbAAoJEMtwMWWoiYTcG5MP/iwmQCmjRx8tfBtfyYelUqWU
97MMDHAs/zy4ePMHOJNJOADE2oloo9lpYaib5kU/38Yd/LU2VqEKmNuBcjEiaOEu
5+OvkpqqSxBZ1IohNmQOKgkM9FtBD3MORy0WkyA5BcjDQDaOtNVZsOFsNyvCGXC3
d1uLqBVW+V2tqqAAEoTDMzgSQ95ifSRcSnjx3tuIuqSdEt8rVPk8+V0BpiwitsdW
viVo5tFBOpFi3yTsd+/cXslUY0X2Su+dT7NBjeEvu1Z8E2SVw9kv7Z2BacUBiQzC
RCsz4dAA21z2383rY3IF7si6I8NVI5v+XFqB6VVXsyqOWtc2zvWfOUYWkedZBELn
z+3L9XOuVaTwhELYTd96fg9fVpDPoonO3aToNQhp756/49/yLovvSXPN1aDEuSxO
+3WMgJf0yduz4btgVkgsbgGlSes9qbJa2uMeBGAI21dA34GEMIeqbiP3MqzfF6Ju
z8BvP55pMN9pSb9jVeQhMafofZKibBW7L4YuNwZHP82jMjpCpKzc3FMt+m1rqlB6
qcA7oQfsZrTv69XjOnbaEeAfmR0qFQwqIE0FWdojfrt6fbB+Uq5IOKlXpBnWexEy
lVnToBiKBQz9edqUWTvdUWZp+G5TfYyuDLg0X1emrKf8QBMgEcHLGiJwa8gTxjud
uPkn+FO5qrFFssDpC1Zo
=VkCK
-END PGP SIGNATURE-

Timo Aaltonen (3):
  Drop build-dependency on libtxw2-java-doc.
  control: Bump policy to 3.9.6, no changes.
  releasing package jellydoc version 1.5-3

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jellydoc.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


[jackson-core] branch master updated (92f9157 - de6f8f4)

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-core.

  from  92f9157   use bundle instead of * in rules
   new  7ddd5fd   depend-on-junit.diff: Prevent needing jackson-parent, add 
a dependency on junit to pom.xml.
   new  c8b3c69   properties: Set encoding to UTF-8.
   new  de6f8f4   releasing package jackson-core version 2.4.2-1

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/changelog|  8 +---
 debian/control  |  1 -
 debian/libjackson2-core-java.poms   |  2 +-
 debian/maven.properties |  1 +
 debian/maven.rules  |  1 -
 debian/patches/depend-on-junit.diff | 20 
 debian/patches/series   |  1 +
 7 files changed, 28 insertions(+), 6 deletions(-)
 create mode 100644 debian/patches/depend-on-junit.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.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


[jackson-core] 02/03: properties: Set encoding to UTF-8.

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-core.

commit c8b3c69e339a325cb951fbdfa779b2dc02b99a75
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 16:37:57 2014 +0300

properties: Set encoding to UTF-8.
---
 debian/changelog| 1 +
 debian/maven.properties | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 53ddd7a..1a3a5fe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ jackson-core (2.4.2-1) UNRELEASED; urgency=medium
   * control: Add libmaven-bundle-plugin-java to build-deps.
   * depend-on-junit.diff: Prevent needing jackson-parent, add a dependency
 on junit to pom.xml.
+  * properties: Set encoding to UTF-8.
 
  -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 21:19:37 +0300
 
diff --git a/debian/maven.properties b/debian/maven.properties
index 40d1d22..b3705b5 100644
--- a/debian/maven.properties
+++ b/debian/maven.properties
@@ -3,3 +3,4 @@
 # maven.test.skip=true
 maven.compiler.source=1.6
 maven.compiler.target=1.6
+project.build.sourceEncoding=UTF-8

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.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


[jackson-core] 01/03: depend-on-junit.diff: Prevent needing jackson-parent, add a dependency on junit to pom.xml.

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-core.

commit 7ddd5fdf913b8d03e8b6b71c2bf81e53b375
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 16:35:26 2014 +0300

depend-on-junit.diff: Prevent needing jackson-parent, add a dependency on 
junit to pom.xml.
---
 debian/changelog|  3 ++-
 debian/control  |  1 -
 debian/libjackson2-core-java.poms   |  2 +-
 debian/maven.rules  |  1 -
 debian/patches/depend-on-junit.diff | 20 
 debian/patches/series   |  1 +
 6 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 31e4568..53ddd7a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,7 +6,8 @@ jackson-core (2.4.2-1) UNRELEASED; urgency=medium
   * maven.{publishedR,r}ules: Fix version mangling.
   * fix-using-bundle.diff: Use extensions with bundle plugin.
   * control: Add libmaven-bundle-plugin-java to build-deps.
-  * Add support for libjackson2-parent-java.
+  * depend-on-junit.diff: Prevent needing jackson-parent, add a dependency
+on junit to pom.xml.
 
  -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 21:19:37 +0300
 
diff --git a/debian/control b/debian/control
index ce68d4b..4eb45e4 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,6 @@ Build-Depends:
 Build-Depends-Indep:
  default-jdk-doc,
  junit4,
- libjackson2-parent-java (= 2.4),
  libmaven-bundle-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven-scm-java
diff --git a/debian/libjackson2-core-java.poms 
b/debian/libjackson2-core-java.poms
index 1d885c3..64b1188 100644
--- a/debian/libjackson2-core-java.poms
+++ b/debian/libjackson2-core-java.poms
@@ -25,4 +25,4 @@
 #   --site-xml=location: Optional, the location for site.xml if it needs to 
be installed.
 # Empty by default. [mh_install]
 #
-pom.xml --has-package-version --java-lib
+pom.xml --no-parent --has-package-version --java-lib
diff --git a/debian/maven.rules b/debian/maven.rules
index 226f323..8a470a0 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,5 +1,4 @@
 
-com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-core bundle s/2\..*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
 org.apache.maven.scm maven-scm-manager-plexus jar s/.*/debian/ * *
diff --git a/debian/patches/depend-on-junit.diff 
b/debian/patches/depend-on-junit.diff
new file mode 100644
index 000..deca14d
--- /dev/null
+++ b/debian/patches/depend-on-junit.diff
@@ -0,0 +1,20 @@
+diff --git a/pom.xml b/pom.xml
+index c90f039..59a52a5 100644
+--- a/pom.xml
 b/pom.xml
+@@ -32,6 +32,15 @@ com.fasterxml.jackson.core.*;version=${project.version}
+ packageVersion.package${project.groupId}.json/packageVersion.package
+   /properties
+ 
++  dependencies
++dependency
++  groupIdjunit/groupId
++  artifactIdjunit/artifactId
++  version4.11/version
++  scopetest/scope
++/dependency
++  /dependencies
++
+   build
+ plugins
+   plugin
diff --git a/debian/patches/series b/debian/patches/series
index c39825f..6ef8bf9 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 fix-using-bundle.diff
+depend-on-junit.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.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


[jackson-core] 03/03: releasing package jackson-core version 2.4.2-1

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-core.

commit de6f8f452df886a8dc0c10e02196e00d4a7c4d70
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 16:38:24 2014 +0300

releasing package jackson-core version 2.4.2-1
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1a3a5fe..8c67306 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-jackson-core (2.4.2-1) UNRELEASED; urgency=medium
+jackson-core (2.4.2-1) unstable; urgency=medium
 
   * Team upload.
   * New upstream release.
@@ -10,7 +10,7 @@ jackson-core (2.4.2-1) UNRELEASED; urgency=medium
 on junit to pom.xml.
   * properties: Set encoding to UTF-8.
 
- -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 21:19:37 +0300
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 24 Sep 2014 16:37:59 +0300
 
 jackson-core (2.2.2-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.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


[jackson-databind] 01/05: control: Bump dependency on -core and -annotations.

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-databind.

commit 65e5adb954fa6f1cd8677f633f2762ec49eb22b9
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 16:55:12 2014 +0300

control: Bump dependency on -core and -annotations.
---
 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b8844e3..6ee6f0a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ jackson-databind (2.4.2-1) UNRELEASED; urgency=medium
   * control: Add libmaven-bundle-plugin to build-deps.
   * fix-using-bundle.diff: Use extensions with bundle plugin.
   * maven.{publishedR,r}ules: Fix version mangling.
+  * control: Bump dependency on -core and -annotations.
 
  -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 17:47:27 +0300
 
diff --git a/debian/control b/debian/control
index 21e142e..5ebe11d 100644
--- a/debian/control
+++ b/debian/control
@@ -10,8 +10,8 @@ Build-Depends:
  default-jdk,
  javahelper (= 0.32),
  maven-debian-helper (= 1.6.5),
- libjackson2-core-java,
- libjackson2-annotations-java,
+ libjackson2-core-java (= 2.4.2),
+ libjackson2-annotations-java (= 2.4.0),
  libmaven-bundle-plugin-java,
  xmlstarlet
 Build-Depends-Indep:

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-databind.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


[jackson-databind] branch master updated (c2643ba - 6ee7985)

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-databind.

  from  c2643ba   maven.{publishedR,r}ules: Fix version mangling.
   new  65e5adb   control: Bump dependency on -core and -annotations.
   new  6ec5269   use bundle instead of * in rules
   new  bd2b02e   properties: Set encoding to UTF-8.
   new  4ae0f8f   control: Add libmaven-cobertura-plugin-java to 
build-depends.
   new  6ee7985   releasing package jackson-databind version 2.4.2-1

The 5 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/changelog| 7 +--
 debian/control  | 5 +++--
 debian/maven.properties | 1 +
 debian/maven.publishedRules | 2 +-
 debian/maven.rules  | 2 +-
 5 files changed, 11 insertions(+), 6 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-databind.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


[jackson-databind] 02/05: use bundle instead of * in rules

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-databind.

commit 6ec5269981b0d2384814f60e156bab0490a25701
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 16:56:18 2014 +0300

use bundle instead of * in rules
---
 debian/maven.publishedRules | 2 +-
 debian/maven.rules  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index 2b937ea..bd75d84 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -1 +1 @@
-com.fasterxml.jackson.core jackson-databind * s/2\..*/2.x/ * *
+com.fasterxml.jackson.core jackson-databind bundle s/2\..*/2.x/ * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 59e308d..c14df06 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,6 +1,6 @@
 
 com.fasterxml.jackson.core jackson-annotations jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
-com.fasterxml.jackson.core jackson-databind * s/2\..*/2.x/ * *
+com.fasterxml.jackson.core jackson-databind bundle s/2\..*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
 org.codehaus.groovy * * s/.*/1.x/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-databind.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


[jackson-databind] 04/05: control: Add libmaven-cobertura-plugin-java to build-depends.

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-databind.

commit 4ae0f8f6ddd8eb163e83775ee49103056b229bed
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:13:46 2014 +0300

control: Add libmaven-cobertura-plugin-java to build-depends.
---
 debian/changelog | 1 +
 debian/control   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 7062355..43a25e4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ jackson-databind (2.4.2-1) UNRELEASED; urgency=medium
   * maven.{publishedR,r}ules: Fix version mangling.
   * control: Bump dependency on -core and -annotations.
   * properties: Set encoding to UTF-8.
+  * control: Add libmaven-cobertura-plugin-java to build-depends.
 
  -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 17:47:27 +0300
 
diff --git a/debian/control b/debian/control
index 5ebe11d..00d9280 100644
--- a/debian/control
+++ b/debian/control
@@ -13,6 +13,7 @@ Build-Depends:
  libjackson2-core-java (= 2.4.2),
  libjackson2-annotations-java (= 2.4.0),
  libmaven-bundle-plugin-java,
+ libmaven-cobertura-plugin-java,
  xmlstarlet
 Build-Depends-Indep:
  default-jdk-doc,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-databind.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


[jackson-databind] 05/05: releasing package jackson-databind version 2.4.2-1

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-databind.

commit 6ee7985123f6b8a1e285c8c908d1286a5b37c77e
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:14:13 2014 +0300

releasing package jackson-databind version 2.4.2-1
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 43a25e4..51ede0a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-jackson-databind (2.4.2-1) UNRELEASED; urgency=medium
+jackson-databind (2.4.2-1) unstable; urgency=medium
 
   * Team upload.
   * New upstream release.
@@ -11,7 +11,7 @@ jackson-databind (2.4.2-1) UNRELEASED; urgency=medium
   * properties: Set encoding to UTF-8.
   * control: Add libmaven-cobertura-plugin-java to build-depends.
 
- -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 17:47:27 +0300
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 24 Sep 2014 17:14:02 +0300
 
 jackson-databind (2.2.2-2) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-databind.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


[jackson-databind] 03/05: properties: Set encoding to UTF-8.

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-databind.

commit bd2b02e2d84805a74ee96a0ace9b6c5803a22b14
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 16:59:52 2014 +0300

properties: Set encoding to UTF-8.
---
 debian/changelog| 1 +
 debian/maven.properties | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 6ee6f0a..7062355 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ jackson-databind (2.4.2-1) UNRELEASED; urgency=medium
   * fix-using-bundle.diff: Use extensions with bundle plugin.
   * maven.{publishedR,r}ules: Fix version mangling.
   * control: Bump dependency on -core and -annotations.
+  * properties: Set encoding to UTF-8.
 
  -- Timo Aaltonen tjaal...@debian.org  Sat, 06 Sep 2014 17:47:27 +0300
 
diff --git a/debian/maven.properties b/debian/maven.properties
index 62f577e..0c20abc 100644
--- a/debian/maven.properties
+++ b/debian/maven.properties
@@ -1,5 +1,6 @@
 maven.compiler.source=1.6
 maven.compiler.target=1.6
+project.build.sourceEncoding=UTF-8
 
 # Hibernate crap can't be tested.
 maven.test.skip=true

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-databind.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


[jackson-core] annotated tag debian/2.4.2-1 created (now d656108)

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/2.4.2-1
in repository jackson-core.

at  d656108   (tag)
   tagging  de6f8f452df886a8dc0c10e02196e00d4a7c4d70 (commit)
  replaces  debian/2.2.2-1
 tagged by  Timo Aaltonen
on  Wed Sep 24 16:38:24 2014 +0300

- Log -
tagging package jackson-core version debian/2.4.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUIslQAAoJEMtwMWWoiYTcsxYQAJ3rPqNowob+0hkzAww1keT1
BkU+MAJqnlqXbK2ZRMqg+qK6qcvvtQNHOEpOmogBgfBucr0Fxni8yS1Z6dGMQEqD
re968f6GsIz8Nga/WmasY663/f894cZ7U+xEkV1KPACrI0o8NagwvH5m1+l45Z7N
SF6+UtUqPLv589Hi3a9YlqBahSxhyqT5KKY299VssUqvSimYLUJ8PrrJNhiDheOC
wm/7xUzfbHrRmzvT5hePlTt0UEGuHSfaLUI8hvG0RynuD2+67iNR/ZcpTeG943Ib
Z612bJmZMogK4kSOq/Vh05DIlV3Xei4msfPgW1Z5ady0lABnn1O7E/40k4K+ECAN
kO6SHthRfLogMiCy1bJ+u3R7IblIi8/cBuAT53ott4PN/lGu2MGGPHwRwufaKrz5
iiNv3ueDPt4HVsE9DyRxG7lZluCHcPYjV4UY5k+j2m4IjK3rK9b2gplpN5jDy5Im
k96C5ylMCFiwaug86z7jy40LeMJHHDWVj1l5H60Hp0HJDr6rzQwchWS+v3mxdXVZ
a42Lr2cqEdVYxwcikNsc8VPj12ocJ2ucGhpj5imXMkD2fCn1PG5eWhUYS1EtJq8q
9Xy6DDB85NL4bxEYpzhrJfnc2dA+LeBEVtjlrBe9ZLcGZWat0/HtzkNJo0v9S42+
6i2qARZSMMGXuEnZV07i
=KSYL
-END PGP SIGNATURE-

Adam Vandenberg (1):
  Fix download link in readme.

Artur Dryomov (1):
  Use syntax highlighting in the readme file.

Ben Gertzfield (4):
  VersionUtil: Improve Android memory usage
  Make PackageVersion implement Versioned.
  Add another unit test.
  Refactor shared properties and plugin logic into oss-parent.

Christopher Currie (6):
  Travis CI support
  Update travis config for Maven deploy
  Travis build status [ci-skip]
  Quote branch name to make it a string [ci skip]
  Update deploy credentials, deploy after success
  Syntax error in travis config

Daniel Lew (1):
  Issue 11: Fixed JsonParser.getValueAsLong()

Eugene Brevdo (1):
  Added support for plain 'Infinity' when feature ALLOW_NON_NUMERIC_NUMBERS 
is on.

Francis Galiegue (7):
  Remove unnecessary boxing/unboxing of primitive values
  No need to declare methods final in final classes
  Private methods don't need a final modifier
  Remove unneeded interface method modifiers
  {Bytes,Char}ToNameCanonicalizer: fix seed generation
  DefaultPrettyPrinter: make some public static variables final
  VersionUtil: fix fd leak in .versionFor()

Gonçalo Silva (4):
  Use StringBuilder instead of StringBuffer
  Remove usage of StringBuilder as it's unneeded
  Remove redundant casts
  Replace manual array copy with System.arraycopy()

James Roper (1):
  Added support for leading versions from maven pom.properties files

Lukasz Dywicki (1):
  Improvements in OSGi manifest generation. Fixes #100.

Lukasz Kryger (1):
  Javadocs fixes (a copy-paste error)

Mark Woon (1):
  Fix links

Martin Steiger (1):
  Added JsonGenerator.writeNumber(short)

Olly Smith (1):
  Fix incorrect @link in jackson.core package-info.

Paul Brown (1):
  Update README.md

Q.P.Liu (2):
  Add FilterJsonGenerator.
  Reimplement FilterJsonGenerator as a flag to JsonGeneratorDelegate.

Tatu (17):
  Fix [JACKSON-753] for 2.0, clean up otherwise
  Start work on [JACKSON-718]
  javadoc improvements
  Last (?) piece of work for [JACKSON-730], add JsonFactory.Feature instead 
of trying to shoe-horn things in JsonParser.Feature
  Remove all pre-2.0 @since tags (since nothing in these packages predates 
2.0)
  Improve ignorals as per #104 (need to roll out to other projects over 
time)
  Minor cleanup for JsonTokenId, adding comments
  update release notes
  Commit actual dup-detection implementation
  fix a typo in credits
  Integrate #129 in mainline as well
  ...
  Add skeletal micro-benchmark to verify perf of json parsing at raw 
streaming level
  Implemented #138
  ...
  Fix #143 (regression, not present in 2.3.3)
  fix build to properly omit **/failing/*.java

Tatu Saloranta (484):
  first commit
  ...
  ...
  clean up pom, readme
  update readme, pom
  Check in actual sources, moved to the new package, cleaned up a bit
  More clean up
  Move TokenBuffer to databind package
  Refactoring: moving JavaType into databind, creating more abstract base 
type, ResolvedType to define ObjectCodec
  Add unit tests from 1.x, all but 2 passing
  Fixed the failing unit test(s), now all pass as expected
  Add version info back, enable test
  Fix version reading problems
  ...
  Improve version detection; add optional group, artifact ids in Version 
(and thereby Versioned)
  Further improvements to version handling
  ...
  ...
  javadoc fixes
  Merge pull request #1 from jroper/master
  test cleanup
  Merge branch 'master' of github.com:FasterXML/jackson

[jackson-dataformat-smile] branch master updated (410af04 - 0a46cfb)

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-dataformat-smile.

  from  410af04   control: Bump libjackson2-core, -databind dependencies.
   new  d9f7486   drop using parent, add a dependency on junit to pom.xml 
instead
   new  3898a0c   properties: Set encoding to UTF-8.
   new  736d1a5   add the junit patch
   new  4597fc8   use bundle instead of * in rules
   new  0a46cfb   releasing package jackson-dataformat-smile version 2.4.2-1

The 5 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/changelog | 11 +++
 debian/control   |  1 -
 debian/libjackson2-dataformat-smile.poms |  2 +-
 debian/maven.properties  |  1 +
 debian/maven.publishedRules  |  2 +-
 debian/maven.rules   |  3 +--
 debian/patches/depend-on-junit.diff  | 18 ++
 debian/patches/series|  1 +
 8 files changed, 30 insertions(+), 9 deletions(-)
 create mode 100644 debian/patches/depend-on-junit.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 04/05: use bundle instead of * in rules

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 4597fc8084331f8aa4b24f625e59e30a10fc7dbf
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:38:46 2014 +0300

use bundle instead of * in rules
---
 debian/maven.publishedRules | 2 +-
 debian/maven.rules  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index c2a4b94..fe574e6 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -1,2 +1,2 @@
 
-com.fasterxml.jackson.dataformat jackson-dataformat-smile * s/2\..*/2.x/ * *
+com.fasterxml.jackson.dataformat jackson-dataformat-smile bundle s/2\..*/2.x/ 
* *
diff --git a/debian/maven.rules b/debian/maven.rules
index a86824d..51d5232 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,5 +1,5 @@
 
 com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind jar s/2\..*/2.x/ * *
-com.fasterxml.jackson.dataformat jackson-dataformat-smile * s/2\..*/2.x/ * *
+com.fasterxml.jackson.dataformat jackson-dataformat-smile bundle s/2\..*/2.x/ 
* *
 junit junit jar s/4\..*/4.x/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 05/05: releasing package jackson-dataformat-smile version 2.4.2-1

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 0a46cfbe121fd15c916d76eef1e2041e73ff6b6e
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:43:02 2014 +0300

releasing package jackson-dataformat-smile version 2.4.2-1
---
 debian/changelog | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0218fc7..94b62e1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
+jackson-dataformat-smile (2.4.2-1) unstable; urgency=low
+
+  * Team upload.
 
   [ Wolodja Wentland ]
   * Use wrap-and-sort from devscripts to format d/control, d/copyright and
 d/libjackson2-dataformat-smile-doc.install
-
   * debian/control
 - Correct Vcs-* field entries (svn → git)
 - Correct Homepage entry
@@ -16,7 +17,7 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
 on junit to pom.xml.
   * properties: Set encoding to UTF-8.
 
- -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
+ -- Timo Aaltonen tjaal...@debian.org  Wed, 24 Sep 2014 17:39:48 +0300
 
 jackson-dataformat-smile (2.2.2-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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

[jackson-dataformat-smile] 01/05: drop using parent, add a dependency on junit to pom.xml instead

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit d9f7486fc3518b0d6a762757fe50e0066926155d
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:23:38 2014 +0300

drop using parent, add a dependency on junit to pom.xml instead
---
 debian/changelog | 3 ++-
 debian/control   | 1 -
 debian/libjackson2-dataformat-smile.poms | 2 +-
 debian/maven.rules   | 1 -
 debian/patches/series| 1 +
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1617654..9d3285b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,9 +10,10 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
 
   [ Timo Aaltonen ]
   * fix-bundle-build.diff: Use extensions with bundle plugin.
-  * Use jackson-parent.
   * maven.{publishedR,r}ules: Fix version mangling.
   * control: Bump libjackson2-core, -databind dependencies.
+  * depend-on-junit.diff: Prevent needing jackson-parent, add a dependency
+on junit to pom.xml.
 
  -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
 
diff --git a/debian/control b/debian/control
index 90da199..23520a2 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,6 @@ Build-Depends: debhelper (= 9),
javahelper (= 0.32),
junit4,
libjackson2-core-java (= 2.4.2),
-   libjackson2-parent-java (= 2.4),
libmaven-bundle-plugin-java,
maven-debian-helper (= 1.6.5),
xmlstarlet
diff --git a/debian/libjackson2-dataformat-smile.poms 
b/debian/libjackson2-dataformat-smile.poms
index 1d885c3..64b1188 100644
--- a/debian/libjackson2-dataformat-smile.poms
+++ b/debian/libjackson2-dataformat-smile.poms
@@ -25,4 +25,4 @@
 #   --site-xml=location: Optional, the location for site.xml if it needs to 
be installed.
 # Empty by default. [mh_install]
 #
-pom.xml --has-package-version --java-lib
+pom.xml --no-parent --has-package-version --java-lib
diff --git a/debian/maven.rules b/debian/maven.rules
index 89987ed..a86824d 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -3,4 +3,3 @@ com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.dataformat jackson-dataformat-smile * s/2\..*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
-com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *
diff --git a/debian/patches/series b/debian/patches/series
index d46f5cc..2460051 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 fix-bundle-build.diff
+depend-on-junit.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 02/05: properties: Set encoding to UTF-8.

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 3898a0ca8a267dddb0e9086d9c8e2546a62473b1
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:31:53 2014 +0300

properties: Set encoding to UTF-8.
---
 debian/changelog| 1 +
 debian/maven.properties | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 9d3285b..0218fc7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,6 +14,7 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
   * control: Bump libjackson2-core, -databind dependencies.
   * depend-on-junit.diff: Prevent needing jackson-parent, add a dependency
 on junit to pom.xml.
+  * properties: Set encoding to UTF-8.
 
  -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
 
diff --git a/debian/maven.properties b/debian/maven.properties
index 40d1d22..b3705b5 100644
--- a/debian/maven.properties
+++ b/debian/maven.properties
@@ -3,3 +3,4 @@
 # maven.test.skip=true
 maven.compiler.source=1.6
 maven.compiler.target=1.6
+project.build.sourceEncoding=UTF-8

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] annotated tag debian/2.4.2-1 created (now 5be9dea)

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/2.4.2-1
in repository jackson-dataformat-smile.

at  5be9dea   (tag)
   tagging  0a46cfbe121fd15c916d76eef1e2041e73ff6b6e (commit)
  replaces  debian/2.2.2-1
 tagged by  Timo Aaltonen
on  Wed Sep 24 17:43:02 2014 +0300

- Log -
tagging package jackson-dataformat-smile version debian/2.4.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUIth2AAoJEMtwMWWoiYTcWDEP/RNBWXLV20ZcGvRXbG6SDTy9
kfNNOltcKspNjtvtC1nDJ6/1/wTtvgmMsTA8UjFSjI+4/lWCKmMFDtOYOlNCVWd9
s4jyhX60ChMy4R8m7ZeAVWlRdAHNlC8vwf39NvEUYiZhVc9VXstFKIcQJr+2WpgD
jLDORdU//Tc3WrKT3Zcu4/yK+r3tFsgEOQHBR7+LQt4H3Kpjsze9RpgGeuocyTil
9UwQZlCfko1F1KgLePD7muIiiaxkmyrAWT6qAVoI5etJXuy5iQzzXFv2yn82LDBo
dBpVLZLO8xFVKH6LPYVxAeMpmRcDmu4Dr68/Me5J0GllerAJfux6F0NL9TqjHpaz
fPsyDhwlJaJbOm9LZjbvOTnyF4gChE2kiTsOzQZI7Cw4aOuHlouIgi84XSZd/wGF
hANWDypzdPYXxzeEihwAFRyJ/U2sehi//YbbRai7cS7MBsHD9mPEZiGhUODqCjgh
Y3SKf/TQyyR/ibozPXM8Hov5Vg/C8jEM8RiVG993AuJtFR41Ola7xOLkt5ElXDRu
EiXJpiEiR5f7IHC1vJy/2gC545vGI2xElIeV6mW08L6+vZquqye+Chbfe/4vL9zH
NmkRy1QFyTnXHrvm9JqCzc4KNBYl9DsEWcq7/5KjExznHjItWYF8Yx52MdhSVrpu
m2KrQh6+TjUBWeRBpBPZ
=xnD/
-END PGP SIGNATURE-

Artur Dryomov (1):
  Use syntax highlighting in the readme file.

Lukasz Dywicki (1):
  Improvements in OSGi manifest generation. Fixes #13.

Paul Brown (1):
  Update README.md

Tatu (7):
  merge unit test update from svn
  Merge fix for [JACKSON-733] from svn
  add a link to smile format group
  ...
  Add unit tests to check that dup-detection (for parser) also works with 
Smile
  Add a unit test for #18
  Move test case under 'failing', for further fixing.

Tatu Saloranta (198):
  First commit
  Add sources, fix build: should be usable module...
  minor fix to pom
  ...
  ...
  minor tweak
  ...
  Update to use 2.0.0-SNAPSHOT core package
  Merge branch 'master' of github.com:FasterXML/jackson-dataformat-smile
  Fix version handling
  Improved version handling
  ...
  Update Maven group id
  ...
  ...
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.0.0-RC1
  [maven-release-plugin] prepare for next development iteration
  Improvements to handling of errors
  Fix [JACKSON-803] for 2.0
  javadoc fix
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.0.0-RC2
  [maven-release-plugin] prepare for next development iteration
  ...
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.0.0-RC3
  [maven-release-plugin] prepare for next development iteration
  Prepare for release
  ...
  javadoc fix
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.0.0
  [maven-release-plugin] prepare for next development iteration
  Upgrade dep to jackson-core 2.1
  prepare for 2.0.1
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.0.1
  [maven-release-plugin] prepare for next development iteration
  Fixed [Issue-2], decoding problem for surrogate pairs, long strings
  Update for 2.0.2 release
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.0.2
  [maven-release-plugin] prepare for next development iteration
  ...
  ...
  Starting to add skeletal version of non-blocking smile parser
  Start real work on non-blocking Smile parser
  More work on non-blocking parsing, added int/long/double decoding
  ...
  Work on async, now handling signature/header
  ...
  ...
  ...
  Start work on incremental writing of binary data
  renaming tests
  Complete [Issue-3]; addition of streaming binary writes
  ...
  Start work on supporting incremental binary decoding
  Implementing streaming binary read functionality
  ..
  Add smile binary generation test
  Work on supporting [jackson-core/Issue-25]
  Add override for SmileFactory.copy()
  Merge pull request #5 from simonetripodi/master
  Fix [Issue#6] for 2.1
  comment out non-blocking part (not done yet)
  Add unit test for [Issue#7]
  merge fix to [Issue#7] from 2.0
  Add a test for format auto-detection
  and bit more testing
  update readme
  Fix [Issue#8]
  add a test for [Issue#8]
  ...
  fix to unit test
  ...
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.1.0
  [maven-release-plugin] prepare for next development iteration
  Minor fix; allow empty content to parse without exceptions, even header 
otherwise required
  ...
  ...
  ...
  [maven-release-plugin] prepare release jackson-dataformat-smile-2.1.1
  [maven-release-plugin] prepare for next development iteration
  ...
  update release notes
  [maven-release-plugin

[jackson-dataformat-smile] 03/05: add the junit patch

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 736d1a5a33deacd1b00258ece90b0ae2ae91fc19
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 24 17:32:14 2014 +0300

add the junit patch
---
 debian/patches/depend-on-junit.diff | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/debian/patches/depend-on-junit.diff 
b/debian/patches/depend-on-junit.diff
new file mode 100644
index 000..4b08b67
--- /dev/null
+++ b/debian/patches/depend-on-junit.diff
@@ -0,0 +1,18 @@
+diff --git a/pom.xml b/pom.xml
+index 2adeff1..ae69d7e 100644
+--- a/pom.xml
 b/pom.xml
+@@ -55,6 +55,13 @@ tree model)
+   version${version.jackson.core}/version
+   scopetest/scope
+ /dependency
++
++dependency
++  groupIdjunit/groupId
++  artifactIdjunit/artifactId
++  version4.11/version
++  scopetest/scope
++/dependency
+   /dependencies
+ 
+   build

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-databind] annotated tag debian/2.4.2-1 created (now fbefb94)

2014-09-24 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag debian/2.4.2-1
in repository jackson-databind.

at  fbefb94   (tag)
   tagging  6ee7985123f6b8a1e285c8c908d1286a5b37c77e (commit)
  replaces  debian/2.2.2-2
 tagged by  Timo Aaltonen
on  Wed Sep 24 17:14:13 2014 +0300

- Log -
tagging package jackson-databind version debian/2.4.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJUItG1AAoJEMtwMWWoiYTcNXEP/iaynxVgtqALI2obZP5qvzcK
CngDbEKwta1SVHjR2d6zJCoxcuOHKyqnmTXNESZ3nPAF6RY2/5mCjVvG10pLpYw9
oeONzZdxRK019IFxV6B1bXn7+X6aAQxZ9tMINkQxujVt5B+h/XMOxJbO66jXFnxg
typvLs/Q1H+ez1eWuTt9wtG7gM9f/L9852/Cdsh6lwvP3gLFfmII7+kuQr5qtKgR
DaBMfmPbQX+qCutvta/kOzOK2Kp/npI1t6SwyZf3TNfIGtYJ3jQd3okgeIftXw0M
6zO1A/l2Mhc8D63a1NBN12jgrUf1Ep7aoINXB648lJD02Uj49GnUCVsEODk4551y
sWGNyggTXbxOnywCjZSNQ+4B1hsC801eAkiz3XMxDOR1yOgKwl1+QHrI+DnPYt8D
yf4bV6oONDrsJB1xljw8gAtfjRnjN4Eu0y2Yckvw3ielJ3Mx+THjO0o/yZQtU9mY
aQu/9IVdmmZUKffwZ8E8wGOJ25XN+HsD0aYJ+LqrnD35Z84VbL0zvWfrMbGDW9Zd
qX9X7YvCJxjZroFha+jlgdnULxhNlFIzW2is65uDBh/5QHSE2z+I51sXk0eG+3wl
jWvYp9FiYbM3t0ZWltXnc69W5zaNxuUsGUXj6ub9pLyt/1ShznDoarP4c4ziyFiH
BkRK3k2YD33NYE5EkmLE
=907u
-END PGP SIGNATURE-

Aaron Davidson (2):
  Contextualize deser with CreatorProperty, not intermediate prop
  Avoid setting explName to true if name is null in POJOPropertyBuilder

Andrew Brampton (1):
  Update 
src/main/java/com/fasterxml/jackson/databind/JsonMappingException.java

Andy Clayton (1):
  include JsonLocation in more mapping exceptions

Artur Dryomov (1):
  Use syntax highlighting in the readme file.

Ben Fagin (3):
  Support type modifiers in type id name resolution.
  skip writing type info for unwrapped properties
  serialization feature to enable/disable reporting of errors related to 
type

Ben Gertzfield (4):
  jackson-databind: Add PackageVersion to improve Android memory usage
  Update PackageVersion.java.in to implement Versioned.
  Refactor shared properties and plugin logic into oss-parent.
  Add a unit test.

Benson Margulies (1):
  documentation for deserialization versus polymorhism.

BokoEnos (1):
  Update BasicDeserializerFactory.java

Christopher Currie (16):
  Co-variant return for createContextual
  Additional methods on StdDelegatingSerializer
  Plumbing for alternate ClassIntrospector
  Rename creator properties in _renameProperties()
  Defer incomplete ValueInstantiator build errors.
  Honor detected constructor properties/names
  Restore covariant returns on BeanPropertyDefiniton subclasses.
  Test for value update on creator props
  Enable (and test) single-arg boolean constructors
  Travis CI config
  Update deploy credentials, deploy after success
  Update build status widget for Travis [ci skip]
  Try to deploy source jars
  Failing test for scala style props
  Add Scala-style constructors
  Add BeanProperty accessors

David Landis (1):
  Fixing the logic in the isEmpty method.

Dmitry Katsubo (2):
  Added getters (issue#65)
  Added DeserializationContext.getFactory() (issue#65)

Eric Tschetter (1):
  1) Commit failing unit test that shouldn't be failing

Francis Galiegue (23):
  NumericNode: make .asXXX() methods final (where XXX is a numeric type)
  DoubleNode: account for NaNs in .equals()
  JsonNodeFactory: normalize DecimalNode instances by default
  TokenBuffer: remove misplaced @Override annotation
  Get rid of custom empty iterator classes
  CalendarSerializer, DateSerializer: make instance final for both classes
  JsonSchema: when overriding .equals(), .hashCode() must be overriden
  SerializerCache: fix embedded TypeKey class' .equals() method
  Remove the last unused empty iterator class
  TestObjectMapperBeanDeserializer: replace URL field with URI
  JsonNode, MissingNode, ValueNode: some simplifications
  Reorganize find methods
  MissingNode: fix bug in is{Value,Container,MissingNode}() contract
  Add a JsonNodeType enum
  JsonNode: add abstract .getNodeType() method, make all .isXxx() methods 
final
  ArrayNode: make _children final
  ObjectNode: make _children final
  ArrayNode: remove unneeded constructor
  ObjectNode: remove unneeded constructor
  ArrayNode: make it final
  Make ObjectNode final
  JsonNodeFactory: work around an old bug with BigDecimal and zero
  Ensure that DecimalNodes with mathematically equal values are equal

Jacek Jackowiak (4):
  Tests for github issue #138
  Walkaround for #138
  This should fail. Walkaround should not be part of test case.
  Added failing test for object deserialization based on id

James Rawlings (1):
  Implemented the required attribute for the bean classes that have 
properties

James Roper (1):
  Added

[jackson-core] 01/01: use bundle instead of * in rules

2014-09-10 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-core.

commit 92f9157cb1e4985f3b4207e3767e97fdb65ffbc9
Author: Timo Aaltonen tjaal...@debian.org
Date:   Wed Sep 10 09:18:54 2014 +0300

use bundle instead of * in rules
---
 debian/maven.publishedRules | 2 +-
 debian/maven.rules  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index 07774aa..f6f6399 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -1,2 +1,2 @@
 
-com.fasterxml.jackson.core jackson-core * s/2\..*/2.x/ * *
+com.fasterxml.jackson.core jackson-core bundle s/2\..*/2.x/ * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 5fb1168..226f323 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,6 +1,6 @@
 
 com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *
-com.fasterxml.jackson.core jackson-core * s/2\..*/2.x/ * *
+com.fasterxml.jackson.core jackson-core bundle s/2\..*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
 org.apache.maven.scm maven-scm-manager-plexus jar s/.*/debian/ * *
 org.apache.maven.scm maven-scm-provider-gitexe jar s/.*/debian/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.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


[jackson-dataformat-smile] 05/08: set as unreleased

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit dce68ec05e6971fff17bf4a9e797e754a0c54d50
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 12:50:55 2014 +0300

set as unreleased
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index aab7cf1..bf3cb41 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-jackson-dataformat-smile (2.4.2-1) debian; urgency=low
+jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
 
   [ Wolodja Wentland ]
   * Use wrap-and-sort from devscripts to format d/control, d/copyright and

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 03/08: bump the version

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit bebfe86136944e7d8933f1b80cd9511db0367b90
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 12:27:50 2014 +0300

bump the version
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 7414098..dc2984a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-jackson-dataformat-smile (2.2.2-2) UNRELEASED; urgency=low
+jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
 
   * Use wrap-and-sort from devscripts to format d/control, d/copyright and
 d/libjackson2-dataformat-smile-doc.install

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 08/08: control: Bump libjackson2-core, -databind dependencies.

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 410af04e97fdc9b3a9b82124472c59af3bb654dd
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 13:07:06 2014 +0300

control: Bump libjackson2-core, -databind dependencies.
---
 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5c3b506..1617654 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
   * fix-bundle-build.diff: Use extensions with bundle plugin.
   * Use jackson-parent.
   * maven.{publishedR,r}ules: Fix version mangling.
+  * control: Bump libjackson2-core, -databind dependencies.
 
  -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
 
diff --git a/debian/control b/debian/control
index 69aba88..90da199 100644
--- a/debian/control
+++ b/debian/control
@@ -8,14 +8,14 @@ Build-Depends: debhelper (= 9),
default-jdk,
javahelper (= 0.32),
junit4,
-   libjackson2-core-java,
+   libjackson2-core-java (= 2.4.2),
libjackson2-parent-java (= 2.4),
libmaven-bundle-plugin-java,
maven-debian-helper (= 1.6.5),
xmlstarlet
 Build-Depends-Indep: default-jdk-doc,
  libjackson2-core-java-doc,
- libjackson2-databind-java,
+ libjackson2-databind-java (= 2.4.2),
  libmaven-javadoc-plugin-java
 Standards-Version: 3.9.4
 Vcs-Git: git://anonscm.debian.org/pkg-java/jackson-dataformat-smile.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 07/08: maven.{publishedR, r}ules: Fix version mangling.

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 8c5abff47f37b2a8226ec23a02fdd55fc83f3e41
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 13:01:44 2014 +0300

maven.{publishedR,r}ules: Fix version mangling.
---
 debian/changelog| 1 +
 debian/maven.publishedRules | 1 +
 debian/maven.rules  | 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 182e956..5c3b506 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
   [ Timo Aaltonen ]
   * fix-bundle-build.diff: Use extensions with bundle plugin.
   * Use jackson-parent.
+  * maven.{publishedR,r}ules: Fix version mangling.
 
  -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
 
diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index 8b13789..c2a4b94 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -1 +1,2 @@
 
+com.fasterxml.jackson.dataformat jackson-dataformat-smile * s/2\..*/2.x/ * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 2bb0d7b..89987ed 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,6 +1,6 @@
 
 com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind jar s/2\..*/2.x/ * *
-com.fasterxml.jackson.dataformat jackson-dataformat-smile jar s/2\..*/2.x/ * *
+com.fasterxml.jackson.dataformat jackson-dataformat-smile * s/2\..*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
 com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 04/08: fix-bundle-build.diff: Use extensions with bundle plugin.

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit fc91d2e60a49e6f3c9ef61d792ded2cc6e694a01
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 12:29:05 2014 +0300

fix-bundle-build.diff: Use extensions with bundle plugin.
---
 debian/changelog |  6 +-
 debian/control   |  1 +
 debian/patches/fix-bundle-build.diff | 15 +++
 debian/patches/series|  1 +
 4 files changed, 22 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index dc2984a..aab7cf1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
+jackson-dataformat-smile (2.4.2-1) debian; urgency=low
 
+  [ Wolodja Wentland ]
   * Use wrap-and-sort from devscripts to format d/control, d/copyright and
 d/libjackson2-dataformat-smile-doc.install
 
@@ -7,6 +8,9 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
 - Correct Vcs-* field entries (svn → git)
 - Correct Homepage entry
 
+  [ Timo Aaltonen ]
+  * fix-bundle-build.diff: Use extensions with bundle plugin.
+
  -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
 
 jackson-dataformat-smile (2.2.2-1) unstable; urgency=low
diff --git a/debian/control b/debian/control
index f384ef2..8ec1ffa 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Build-Depends: debhelper (= 9),
javahelper (= 0.32),
junit4,
libjackson2-core-java,
+   libmaven-bundle-plugin-java,
maven-debian-helper (= 1.6.5),
xmlstarlet
 Build-Depends-Indep: default-jdk-doc,
diff --git a/debian/patches/fix-bundle-build.diff 
b/debian/patches/fix-bundle-build.diff
new file mode 100644
index 000..08ae25f
--- /dev/null
+++ b/debian/patches/fix-bundle-build.diff
@@ -0,0 +1,15 @@
+--- a/pom.xml
 b/pom.xml
+@@ -80,6 +80,12 @@ tree model)
+   /excludes
+ /configuration
+   /plugin
++  plugin
++groupIdorg.apache.felix/groupId
++artifactIdmaven-bundle-plugin/artifactId
++version2.3.5/version
++extensionstrue/extensions
++  /plugin
+ /plugins
+   /build
+ /project
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..d46f5cc
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix-bundle-build.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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

[jackson-dataformat-smile] 02/08: Merge branch 'master' into master-n

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 0655005bb3e94699ed75eb5151a219d02d0fdad5
Merge: b0039f3 2a446a6
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 11:55:57 2014 +0300

Merge branch 'master' into master-n

 debian/README.source   |  9 +++
 debian/changelog   | 16 ++
 debian/compat  |  1 +
 debian/control | 65 ++
 debian/copyright   | 33 +++
 .../libjackson2-dataformat-smile-doc.doc-base.api  | 10 
 debian/libjackson2-dataformat-smile-doc.install|  2 +
 debian/libjackson2-dataformat-smile.classpath  |  1 +
 debian/libjackson2-dataformat-smile.poms   | 28 ++
 debian/maven.cleanIgnoreRules  |  1 +
 debian/maven.ignoreRules   |  2 +
 debian/maven.properties|  5 ++
 debian/maven.publishedRules|  1 +
 debian/maven.rules |  5 ++
 debian/replace-generate.sh | 34 +++
 debian/rules   | 19 +++
 debian/source/format   |  1 +
 debian/watch   |  2 +
 18 files changed, 235 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] 06/08: Use jackson-parent.

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit 017b1f54f8d1ddb4772c491ebcb632d11105b165
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 12:51:53 2014 +0300

Use jackson-parent.
---
 debian/changelog | 1 +
 debian/control   | 1 +
 debian/libjackson2-dataformat-smile.poms | 2 +-
 debian/maven.rules   | 1 +
 4 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index bf3cb41..182e956 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ jackson-dataformat-smile (2.4.2-1) UNRELEASED; urgency=low
 
   [ Timo Aaltonen ]
   * fix-bundle-build.diff: Use extensions with bundle plugin.
+  * Use jackson-parent.
 
  -- Wolodja Wentland deb...@babilen5.org  Thu, 26 Sep 2013 17:53:19 +
 
diff --git a/debian/control b/debian/control
index 8ec1ffa..69aba88 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Build-Depends: debhelper (= 9),
javahelper (= 0.32),
junit4,
libjackson2-core-java,
+   libjackson2-parent-java (= 2.4),
libmaven-bundle-plugin-java,
maven-debian-helper (= 1.6.5),
xmlstarlet
diff --git a/debian/libjackson2-dataformat-smile.poms 
b/debian/libjackson2-dataformat-smile.poms
index 64b1188..1d885c3 100644
--- a/debian/libjackson2-dataformat-smile.poms
+++ b/debian/libjackson2-dataformat-smile.poms
@@ -25,4 +25,4 @@
 #   --site-xml=location: Optional, the location for site.xml if it needs to 
be installed.
 # Empty by default. [mh_install]
 #
-pom.xml --no-parent --has-package-version --java-lib
+pom.xml --has-package-version --java-lib
diff --git a/debian/maven.rules b/debian/maven.rules
index cd36e12..2bb0d7b 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -3,3 +3,4 @@ com.fasterxml.jackson.core jackson-core jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind jar s/2\..*/2.x/ * *
 com.fasterxml.jackson.dataformat jackson-dataformat-smile jar s/2\..*/2.x/ * *
 junit junit jar s/4\..*/4.x/ * *
+com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-dataformat-smile] branch master updated (2a446a6 - 410af04)

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-dataformat-smile.

  from  2a446a6   Correct Homepage entry
  adds  0ded36e   First commit
  adds  be5410e   Add sources, fix build: should be usable module...
  adds  c8e26bb   minor fix to pom
  adds  af9f98f   ...
  adds  eb2e0f5   ...
  adds  832c2b3   minor tweak
  adds  d625ddc   ...
  adds  2ebb8a0   Update to use 2.0.0-SNAPSHOT core package
  adds  b10e48d   merge unit test update from svn
  adds  1a6b60f   Merge fix for [JACKSON-733] from svn
  adds  5231d72   Merge branch 'master' of 
github.com:FasterXML/jackson-dataformat-smile
  adds  8f0a560   Fix version handling
  adds  44896ce   Improved version handling
  adds  60a328d   ...
  adds  151dbab   Update Maven group id
  adds  e6b85e4   ...
  adds  f092413   ...
  adds  5cb27ee   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.0.0-RC1
  adds  3e78543   [maven-release-plugin] prepare for next development 
iteration
  adds  db8281c   Improvements to handling of errors
  adds  97eaf00   Fix [JACKSON-803] for 2.0
  adds  3eb7c5e   javadoc fix
  adds  ffad02c   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.0.0-RC2
  adds  2595939   [maven-release-plugin] prepare for next development 
iteration
  adds  b5f33d3   ...
  adds  9a8313b   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.0.0-RC3
  adds  d228a0f   [maven-release-plugin] prepare for next development 
iteration
  adds  c366365   Prepare for release
  adds  91c1a8e   ...
  adds  5411fdd   javadoc fix
  adds  4528325   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.0.0
  adds  e5e03ef   [maven-release-plugin] prepare for next development 
iteration
  adds  9f5fc7d   Upgrade dep to jackson-core 2.1
  adds  5153e92   prepare for 2.0.1
  adds  6092e9c   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.0.1
  adds  410bd57   [maven-release-plugin] prepare for next development 
iteration
  adds  fc7cfd0   Fixed [Issue-2], decoding problem for surrogate pairs, 
long strings
  adds  6ea5a65   Update for 2.0.2 release
  adds  cdf3d3f   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.0.2
  adds  fd57d21   [maven-release-plugin] prepare for next development 
iteration
  adds  c068f87   ...
  adds  c84c05b   ...
  adds  dcfb9ce   Starting to add skeletal version of non-blocking smile 
parser
  adds  bf64833   Start real work on non-blocking Smile parser
  adds  84ffe20   More work on non-blocking parsing, added int/long/double 
decoding
  adds  7d65281   ...
  adds  f6a09d0   Work on async, now handling signature/header
  adds  e6b5ea1   ...
  adds  2253729   ...
  adds  bf967ab   ...
  adds  9c22396   Start work on incremental writing of binary data
  adds  226714c   renaming tests
  adds  7092d40   Complete [Issue-3]; addition of streaming binary writes
  adds  d7b4e25   ...
  adds  ff3ddaa   Start work on supporting incremental binary decoding
  adds  47145aa   Implementing streaming binary read functionality
  adds  4366451   ..
  adds  b1b32ac   Add smile binary generation test
  adds  a8283f1   Work on supporting [jackson-core/Issue-25]
  adds  892f3f4   Add override for SmileFactory.copy()
  adds  f4ddca1   Smile JsonFactory discoverable via META-INF/service
  adds  265ad95   upgraded parent version to v3
  adds  264d7fd   reorganized stuff according to 
http://maven.apache.org/developers/conventions/code.html
  adds  34133bc   upgraded junit dependency
  adds  3762739   Merge pull request #5 from simonetripodi/master
  adds  e6e1ad7   Fix [Issue#6] for 2.1
  adds  eb08be3   comment out non-blocking part (not done yet)
  adds  00f6702   Add unit test for [Issue#7]
  adds  549c703   merge fix to [Issue#7] from 2.0
  adds  6dc60fa   Add a test for format auto-detection
  adds  22c7cae   and bit more testing
  adds  1ea687e   update readme
  adds  62bd1db   Fix [Issue#8]
  adds  51fb312   add a test for [Issue#8]
  adds  0e0ad37   ...
  adds  a28c681   fix to unit test
  adds  034b507   ...
  adds  17c85eb   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.1.0
  adds  fffa8aa   [maven-release-plugin] prepare for next development 
iteration
  adds  a8b735c   Minor fix; allow empty content to parse without 
exceptions, even header otherwise required
  adds  eb1acd9   Update README.md
  adds  9b3130a   ...
  adds  a7e226b   ...
  adds  602662c   ...
  adds  4c1419a   [maven-release-plugin] prepare release 
jackson-dataformat-smile-2.1.1
  adds  8a4661e   [maven-release-plugin] prepare for next 

[jackson-dataformat-smile] 01/08: Merge commit '519b45a0637a0dc739363776b9e9ef4b1bc665da' into master-n

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-dataformat-smile.

commit b0039f34349ffe0ee7280cdc75d2c3fd1a23f929
Merge: ac560fd 519b45a
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 11:55:46 2014 +0300

Merge commit '519b45a0637a0dc739363776b9e9ef4b1bc665da' into master-n


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-dataformat-smile.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


[jackson-jaxrs-providers] 05/05: enable smile provider

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit 376ab24f69eae9e551e2094c15b4212e07933eb6
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 13:20:59 2014 +0300

enable smile provider
---
 debian/control   | 11 
 debian/libjackson2-jaxrs-providers-java.poms |  2 +-
 debian/maven.ignoreRules |  1 -
 debian/maven.publishedRules  |  1 +
 debian/maven.rules   |  2 ++
 debian/patches/force-core-version.diff   | 39 
 debian/patches/jar-instead-bundle.diff   | 11 
 7 files changed, 60 insertions(+), 7 deletions(-)

diff --git a/debian/control b/debian/control
index 945cf4f..4bae77d 100644
--- a/debian/control
+++ b/debian/control
@@ -8,6 +8,7 @@ Build-Depends: debhelper (= 9), default-jdk, 
maven-debian-helper (= 1.5),
 Build-Depends-Indep:
  libjackson2-core-java (= 2.4.2),
  libjackson2-databind-java (= 2.4.2),
+ libjackson2-dataformat-smile (= 2.4.2),
  libjackson2-parent-java (= 2.4),
  libjackson2-module-jaxb-annotations-java (= 2.4),
  libjsr311-api-java,
@@ -24,9 +25,9 @@ Description: Jackson JAX-RS providers
  This is a multi-module project that contains Jackson-based JAX-RS providers 
for
  following data formats:
  .
- * JSON (https://github.com/FasterXML/jackson-core)
- * Smile (https://github.com/FasterXML/jackson-dataformat-smile)
- * XML (https://github.com/FasterXML/jackson-dataformat-xml)
- * CBOR (https://github.com/FasterXML/jackson-dataformat-cbor)
+   * JSON (https://github.com/FasterXML/jackson-core)
+   * Smile (https://github.com/FasterXML/jackson-dataformat-smile)
+   * XML (https://github.com/FasterXML/jackson-dataformat-xml)
+   * CBOR (https://github.com/FasterXML/jackson-dataformat-cbor)
  .
- Only JSON is enabled at this time.
+ Only JSON and Smile providers are built in this package for now.
diff --git a/debian/libjackson2-jaxrs-providers-java.poms 
b/debian/libjackson2-jaxrs-providers-java.poms
index 284ba10..4659549 100644
--- a/debian/libjackson2-jaxrs-providers-java.poms
+++ b/debian/libjackson2-jaxrs-providers-java.poms
@@ -29,5 +29,5 @@ pom.xml --has-package-version
 base/pom.xml --has-package-version
 cbor/pom.xml --ignore
 json/pom.xml --has-package-version
-smile/pom.xml --ignore
+smile/pom.xml --has-package-version
 xml/pom.xml --ignore
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
index 156dd9e..f96b231 100644
--- a/debian/maven.ignoreRules
+++ b/debian/maven.ignoreRules
@@ -1,6 +1,5 @@
 
 com.fasterxml.jackson.jaxrs jackson-jaxrs-cbor-provider bundle * * *
-com.fasterxml.jackson.jaxrs jackson-jaxrs-smile-provider bundle * * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-xml-provider bundle * * *
 com.google.code.maven-replacer-plugin replacer * * * *
 com.sun.jersey jersey-core * * * *
diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index cf672d5..c85023a 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -2,3 +2,4 @@
 com.fasterxml.jackson.jaxrs jackson-jaxrs-providers pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-base * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider * s/2\..*/2.x/ * *
+com.fasterxml.jackson.jaxrs jackson-jaxrs-smile-provider * s/2\..*/2.x/ * *
diff --git a/debian/maven.rules b/debian/maven.rules
index c162a69..f8b998c 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -2,7 +2,9 @@
 com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-base * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider * s/2\..*/2.x/ * *
+com.fasterxml.jackson.jaxrs jackson-jaxrs-smile-provider * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-providers pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-core * s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind * s/2\..*/2.x/ * *
 com.fasterxml.jackson.module jackson-module-jaxb-annotations * s/2\..*/2.x/ * *
+com.fasterxml.jackson.dataformat jackson-dataformat-smile * s/2\..*/2.x/ * *
diff --git a/debian/patches/force-core-version.diff 
b/debian/patches/force-core-version.diff
index 15e571b..bada909 100644
--- a/debian/patches/force-core-version.diff
+++ b/debian/patches/force-core-version.diff
@@ -48,3 +48,42 @@
  /dependency
  
  !-- test deps should mostly come from parent, including jersey --
+--- a/smile/pom.xml
 b/smile/pom.xml
+@@ -42,30 +42,30 @@
+ !-- builds on shared base JAX-RS handling code... --
+ dependency
+   artifactIdjackson-jaxrs-base/artifactId
+-  groupId${project.groupId}/groupId
+-  version${project.version}/version
++  groupIdcom.fasterxml.jackson.jaxrs/groupId
++  version2.4.2/version
+ /dependency
+ !-- Extends Jackson core, mapper, and also (sort of optionally) on JAXB 
annotation

[jackson-jaxrs-providers] 01/05: bump jackson dependencies

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit ce793023c73dba4db068d5bf37d7bdd7db6c9dc0
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 11:29:39 2014 +0300

bump jackson dependencies
---
 debian/control | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index 47694d9..69e22ff 100644
--- a/debian/control
+++ b/debian/control
@@ -6,10 +6,10 @@ Uploaders: Timo Aaltonen tjaal...@ubuntu.com
 Build-Depends: debhelper (= 9), cdbs, default-jdk, maven-debian-helper (= 
1.5),
  xmlstarlet,
 Build-Depends-Indep:
- libjackson2-core-java,
- libjackson2-databind-java,
- libjackson2-parent-java,
- libjackson2-module-jaxb-annotations-java,
+ libjackson2-core-java (= 2.4.2),
+ libjackson2-databind-java (= 2.4.2),
+ libjackson2-parent-java (= 2.4),
+ libjackson2-module-jaxb-annotations-java (= 2.4),
  libjsr311-api-java,
  libmaven-bundle-plugin-java,
 Standards-Version: 3.9.5

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] branch master updated (121f572 - 376ab24)

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-jaxrs-providers.

  from  121f572   initial packaging
   new  ce79302   bump jackson dependencies
   new  ba6a229   fix build; use jar instead of bundle
   new  4bb2ee3   update descriptions
   new  7cfb8d5   drop cdbs from build-depends
   new  376ab24   enable smile provider

The 5 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/control   | 25 +++---
 debian/libjackson2-jaxrs-providers-java.poms |  2 +-
 debian/maven.ignoreRules |  1 -
 debian/maven.publishedRules  |  3 +--
 debian/maven.rules   |  6 +++--
 debian/patches/fix-using-bundle.diff | 36 -
 debian/patches/force-core-version.diff   | 39 
 debian/patches/jar-instead-bundle.diff   | 33 +++
 debian/patches/series|  2 +-
 9 files changed, 95 insertions(+), 52 deletions(-)
 delete mode 100644 debian/patches/fix-using-bundle.diff
 create mode 100644 debian/patches/jar-instead-bundle.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] 04/05: drop cdbs from build-depends

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit 7cfb8d5662a93fd8b0c356eca3118e26757d525f
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 12:01:41 2014 +0300

drop cdbs from build-depends
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index ebe76f7..945cf4f 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
 Uploaders: Timo Aaltonen tjaal...@ubuntu.com
-Build-Depends: debhelper (= 9), cdbs, default-jdk, maven-debian-helper (= 
1.5),
+Build-Depends: debhelper (= 9), default-jdk, maven-debian-helper (= 1.5),
  xmlstarlet,
 Build-Depends-Indep:
  libjackson2-core-java (= 2.4.2),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] 03/05: update descriptions

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit 4bb2ee3cc988f8978e4aa2a544c7bab881b514d6
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 12:00:00 2014 +0300

update descriptions
---
 debian/control | 13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index ccd9af1..ebe76f7 100644
--- a/debian/control
+++ b/debian/control
@@ -20,6 +20,13 @@ Package: libjackson2-jaxrs-providers-java
 Architecture: all
 Depends: ${misc:Depends}, ${maven:Depends}
 Suggests: ${maven:OptionalDepends}
-Description: Jackson JAX-RS
- Parent for Jackson JAX-RS providers
-
+Description: Jackson JAX-RS providers
+ This is a multi-module project that contains Jackson-based JAX-RS providers 
for
+ following data formats:
+ .
+ * JSON (https://github.com/FasterXML/jackson-core)
+ * Smile (https://github.com/FasterXML/jackson-dataformat-smile)
+ * XML (https://github.com/FasterXML/jackson-dataformat-xml)
+ * CBOR (https://github.com/FasterXML/jackson-dataformat-cbor)
+ .
+ Only JSON is enabled at this time.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


[jackson-jaxrs-providers] 02/05: fix build; use jar instead of bundle

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit ba6a229846fbaaff3ba2ccf33c327c9ed3082c14
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 11:47:23 2014 +0300

fix build; use jar instead of bundle
---
 debian/control |  1 -
 debian/maven.publishedRules|  2 --
 debian/maven.rules |  4 ++--
 debian/patches/fix-using-bundle.diff   | 36 --
 debian/patches/jar-instead-bundle.diff | 22 +
 debian/patches/series  |  2 +-
 6 files changed, 25 insertions(+), 42 deletions(-)

diff --git a/debian/control b/debian/control
index 69e22ff..ccd9af1 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,6 @@ Build-Depends-Indep:
  libjackson2-parent-java (= 2.4),
  libjackson2-module-jaxb-annotations-java (= 2.4),
  libjsr311-api-java,
- libmaven-bundle-plugin-java,
 Standards-Version: 3.9.5
 Vcs-Git: git://anonscm.debian.org/pkg-java/jackson-jaxrs-providers.git
 Vcs-Browser: 
http://anonscm.debian.org/cgit/pkg-java/jackson-jaxrs-providers.git
diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
index 3f30687..cf672d5 100644
--- a/debian/maven.publishedRules
+++ b/debian/maven.publishedRules
@@ -1,6 +1,4 @@
 
-com.fasterxml.jackson.jaxrs jackson-jaxrs-base bundle s/2\..*/2.x/ * *
-com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider bundle s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-providers pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-base * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider * s/2\..*/2.x/ * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 1cc4439..c162a69 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,7 +1,7 @@
 
 com.fasterxml.jackson jackson-parent pom s/2\..*/2.x/ * *
-com.fasterxml.jackson.jaxrs jackson-jaxrs-base bundle s/2\..*/2.x/ * *
-com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider bundle s/2\..*/2.x/ * *
+com.fasterxml.jackson.jaxrs jackson-jaxrs-base * s/2\..*/2.x/ * *
+com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider * s/2\..*/2.x/ * *
 com.fasterxml.jackson.jaxrs jackson-jaxrs-providers pom s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-core * s/2\..*/2.x/ * *
 com.fasterxml.jackson.core jackson-databind * s/2\..*/2.x/ * *
diff --git a/debian/patches/fix-using-bundle.diff 
b/debian/patches/fix-using-bundle.diff
deleted file mode 100644
index 68f2e2d..000
--- a/debian/patches/fix-using-bundle.diff
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/base/pom.xml b/base/pom.xml
-index 32a59c9..6cd30e8 100644
 a/base/pom.xml
-+++ b/base/pom.xml
-@@ -49,4 +49,14 @@ ${project.groupId}.annotation.*;version=${project.version}
- /dependency
- !-- test deps should come from parent --
-   /dependencies
-+  build
-+plugins
-+  plugin
-+groupIdorg.apache.felix/groupId
-+artifactIdmaven-bundle-plugin/artifactId
-+version2.3.5/version
-+extensionstrue/extensions
-+  /plugin
-+/plugins
-+  /build
- /project
-diff --git a/json/pom.xml b/json/pom.xml
-index b8d4171..4b1aec5 100644
 a/json/pom.xml
-+++ b/json/pom.xml
-@@ -85,6 +85,12 @@
-   /execution
-   /executions
-   /plugin
-+  plugin
-+groupIdorg.apache.felix/groupId
-+artifactIdmaven-bundle-plugin/artifactId
-+version2.3.5/version
-+extensionstrue/extensions
-+  /plugin
- /plugins
-   /build
- /project
diff --git a/debian/patches/jar-instead-bundle.diff 
b/debian/patches/jar-instead-bundle.diff
new file mode 100644
index 000..6a1af25
--- /dev/null
+++ b/debian/patches/jar-instead-bundle.diff
@@ -0,0 +1,22 @@
+--- a/base/pom.xml
 b/base/pom.xml
+@@ -8,7 +8,7 @@
+   /parent
+   artifactIdjackson-jaxrs-base/artifactId
+   nameJackson-JAXRS-base/name
+-  packagingbundle/packaging
++  packagingjar/packaging
+   descriptionPile of code that is shared by all Jackson-based JAX-RS
+ providers.
+   /description
+--- a/json/pom.xml
 b/json/pom.xml
+@@ -8,7 +8,7 @@
+   /parent
+   artifactIdjackson-jaxrs-json-provider/artifactId
+   nameJackson-JAXRS-JSON/name
+-  packagingbundle/packaging
++  packagingjar/packaging
+   descriptionFunctionality to handle JSON input/output for JAX-RS 
implementations (like Jersey and RESTeasy) using standard Jackson data binding.
+   /description
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 88fc73c..e91f522 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,2 @@
 force-core-version.diff
-fix-using-bundle.diff
+jar-instead-bundle.diff

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

___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http

[jackson-module-jaxb-annotations] branch master updated (2654608 - 53a55f8)

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository jackson-module-jaxb-annotations.

  from  2654608   maven.{publishedR,r}ules: Fix version mangling.
   new  3353c7c   bump jackson dependencies
   new  53a55f8   trim changelog

The 2 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/changelog | 1 -
 debian/control   | 6 +++---
 2 files changed, 3 insertions(+), 4 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-module-jaxb-annotations] 02/02: trim changelog

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-module-jaxb-annotations.

commit 53a55f849a85b052419963079c4a27eaf1c565a3
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 13:39:47 2014 +0300

trim changelog
---
 debian/changelog | 1 -
 1 file changed, 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 1e89fda..b08300e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,5 @@
 jackson-module-jaxb-annotations (2.4.2-1) UNRELEASED; urgency=medium
 
   * Initial release (Closes: #758154)
-  * maven.{publishedR,r}ules: Fix version mangling.
 
  -- Timo Aaltonen tjaal...@ubuntu.com  Thu, 03 Jul 2014 11:39:42 +0300

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-module-jaxb-annotations] 01/02: bump jackson dependencies

2014-09-09 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-module-jaxb-annotations.

commit 3353c7cd932ab009d5aebd8f7fc7dfbb1c9158d1
Author: Timo Aaltonen tjaal...@debian.org
Date:   Tue Sep 9 13:39:37 2014 +0300

bump jackson dependencies
---
 debian/control | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 8e8ee17..4ff95aa 100644
--- a/debian/control
+++ b/debian/control
@@ -10,9 +10,9 @@ Build-Depends:
  xmlstarlet
 Build-Depends-Indep:
  libbuild-helper-maven-plugin-java,
- libjackson2-annotations-java (= 2.4.1),
- libjackson2-core-java (= 2.4.1),
- libjackson2-databind-java (= 2.4.1),
+ libjackson2-annotations-java (= 2.4.2),
+ libjackson2-core-java (= 2.4.2),
+ libjackson2-databind-java (= 2.4.2),
  libjaxb-api-java,
  libmaven-bundle-plugin-java,
  libmaven-enforcer-plugin-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-module-jaxb-annotations.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


[jackson-jaxrs-providers] 116/162: Adding 2 (now-deprecated) methods to hopefully resolve #41. Still need to figure out a way to test via unit tests.

2014-09-08 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository jackson-jaxrs-providers.

commit c4ec3afe7b07d13abb5ca811c1e1ee2b1e743385
Author: Tatu Saloranta tatu.salora...@iki.fi
Date:   Thu Jan 30 09:22:49 2014 -0800

Adding 2 (now-deprecated) methods to hopefully resolve #41. Still need to 
figure out a way to test via unit tests.
---
 .../fasterxml/jackson/jaxrs/base/ProviderBase.java | 23 +-
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git 
a/base/src/main/java/com/fasterxml/jackson/jaxrs/base/ProviderBase.java 
b/base/src/main/java/com/fasterxml/jackson/jaxrs/base/ProviderBase.java
index 5b5ec8e..d2c838b 100644
--- a/base/src/main/java/com/fasterxml/jackson/jaxrs/base/ProviderBase.java
+++ b/base/src/main/java/com/fasterxml/jackson/jaxrs/base/ProviderBase.java
@@ -51,9 +51,6 @@ public abstract class ProviderBase
 // then some primitive types
 DEFAULT_UNTOUCHABLES.add(new ClassKey(char[].class));
 
-/* 28-Jan-2012, tatu: 1.x excluded some additional types;
- *   but let's relax these a bit:
- */
 /* 27-Apr-2012, tatu: Ugh. As per
  *   
[https://github.com/FasterXML/jackson-jaxrs-json-provider/issues/12]
  *  better revert this back, to make them untouchable again.
@@ -445,11 +442,11 @@ public abstract class ProviderBase
 protected abstract boolean hasMatchingMediaType(MediaType mediaType);
 
 protected abstract MAPPER _locateMapperViaProvider(Class? type, 
MediaType mediaType);
-
+
 protected EP_CONFIG _configForReading(MAPPER mapper,
 Annotation[] annotations, Class? defaultView)
 {
-//ObjectReaderModi r = _readerInjector.getAndClear();
+//ObjectReader r = _readerInjector.getAndClear();
 ObjectReader r;
 if (defaultView != null) {
 r = mapper.readerWithView(defaultView);
@@ -472,6 +469,22 @@ public abstract class ProviderBase
 return _configForWriting(w, annotations);
 }
 
+/**
+ * @deprecated Since 2.3, use variant that takes explicit defaultView
+ */
+@Deprecated
+protected EP_CONFIG _configForReading(MAPPER mapper, Annotation[] 
annotations) {
+return _configForReading(mapper, annotations, _defaultReadView);
+}
+
+/**
+ * @deprecated Since 2.3, use variant that takes explicit defaultView
+ */
+@Deprecated
+protected EP_CONFIG _configForWriting(MAPPER mapper, Annotation[] 
annotations) {
+return _configForWriting(mapper, annotations, _defaultWriteView);
+}
+
 protected abstract EP_CONFIG _configForReading(ObjectReader reader,
 Annotation[] annotations);
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.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


  1   2   3   4   5   6   7   8   9   10   >