Andrius Merkys pushed to branch master at Debian Java Maintainers / jsonld-java


Commits:
92350c75 by Andrius Merkys at 2021-12-15T01:15:27-05:00
New upstream version 0.13.4
- - - - -
385e29b3 by Andrius Merkys at 2021-12-15T01:15:44-05:00
Update upstream source from tag 'upstream/0.13.4'

Update to upstream version '0.13.4'
with Debian dir 9d6919a24e9f40cfabca6ffb67bc3e116ecd288a
- - - - -
a9d41eed by Andrius Merkys at 2021-12-15T01:17:26-05:00
Build-depends on liblogback-java.

- - - - -
6b9e05c3 by Andrius Merkys at 2021-12-15T01:17:43-05:00
Binary package does not depend on ${maven:CompileDepends}.

- - - - -
b6e63761 by Andrius Merkys at 2021-12-15T01:18:07-05:00
Set upstream metadata fields: Repository.

Changes-By: lintian-brush
Fixes: lintian: upstream-metadata-file-is-missing
See-also: https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html

- - - - -
db1c3235 by Andrius Merkys at 2021-12-15T01:18:07-05:00
Update standards version to 4.6.0, no changes needed.

Changes-By: lintian-brush
Fixes: lintian: out-of-date-standards-version
See-also: https://lintian.debian.org/tags/out-of-date-standards-version.html

- - - - -
42297827 by Andrius Merkys at 2021-12-15T01:18:32-05:00
Update changelog for 0.13.4-1 release

- - - - -


8 changed files:

- .travis.yml
- README.md
- core/pom.xml
- − core/src/test/resources/log4j.properties
- debian/changelog
- debian/control
- + debian/upstream/metadata
- pom.xml


Changes:

=====================================
.travis.yml
=====================================
@@ -9,3 +9,7 @@ after_success:
 arch:
   - amd64
   - ppc64le
+
+cache:
+  directories:
+  - $HOME/.m2


=====================================
README.md
=====================================
@@ -16,7 +16,7 @@ From Maven
     <dependency>
         <groupId>com.github.jsonld-java</groupId>
         <artifactId>jsonld-java</artifactId>
-        <version>0.13.3</version>
+        <version>0.13.4</version>
     </dependency>
 
 Code example
@@ -323,11 +323,11 @@ Here is the basic outline for what your module's pom.xml 
should look like
   <parent>
     <groupId>com.github.jsonld-java</groupId>
     <artifactId>jsonld-java-parent</artifactId>
-    <version>0.13.3</version>
+    <version>0.13.4</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jsonld-java-{your module}</artifactId>
-  <version>0.13.3-SNAPSHOT</version>
+  <version>0.13.4-SNAPSHOT</version>
   <name>JSONLD Java :: {your module name}</name>
   <description>JSON-LD Java integration module for {RDF Library your module 
integrates}</description>
   <packaging>jar</packaging>
@@ -449,6 +449,11 @@ Alternatively, we can also host your repository in the 
jsonld-java organisation
 
 CHANGELOG
 =========
+### 2021-12-13
+* Release 0.13.4
+* Switch test logging from log4j to logback (Patch by @ansell)
+* Improve Travis CI build Performance (Patch by @YunLemon)
+
 ### 2021-03-06
 * Release 0.13.3
 * Fix @type when subject and object are the same (Reported by @barthanssens, 
Patch by @umbreak)


=====================================
core/pom.xml
=====================================
@@ -4,7 +4,7 @@
        <parent>
                <artifactId>jsonld-java-parent</artifactId>
                <groupId>com.github.jsonld-java</groupId>
-               <version>0.13.3</version>
+               <version>0.13.4</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
        <artifactId>jsonld-java</artifactId>
@@ -53,8 +53,8 @@
                        <scope>test</scope>
                </dependency>
                <dependency>
-                       <groupId>org.slf4j</groupId>
-                       <artifactId>slf4j-log4j12</artifactId>
+                       <groupId>ch.qos.logback</groupId>
+                       <artifactId>logback-classic</artifactId>
                        <scope>test</scope>
                </dependency>
                <dependency>


=====================================
core/src/test/resources/log4j.properties deleted
=====================================
@@ -1,5 +0,0 @@
-log4j.rootLogger=INFO, R
-
-log4j.appender.R=org.apache.log4j.ConsoleAppender
-log4j.appender.R.layout=org.apache.log4j.PatternLayout
-log4j.appender.R.layout.ConversionPattern=[%d] %-5p (%c:%L) %m%n


=====================================
debian/changelog
=====================================
@@ -1,3 +1,16 @@
+jsonld-java (0.13.4-1) unstable; urgency=medium
+
+  [ Andrius Merkys ]
+  * New upstream version 0.13.4
+  * Build-depends on liblogback-java.
+  * Binary package does not depend on ${maven:CompileDepends}.
+
+  [ lintian-brush ]
+  * Set upstream metadata fields: Repository.
+  * Update standards version to 4.6.0, no changes needed.
+
+ -- Andrius Merkys <mer...@debian.org>  Wed, 15 Dec 2021 01:18:19 -0500
+
 jsonld-java (0.13.3-1) unstable; urgency=medium
 
   * New upstream version 0.13.3


=====================================
debian/control
=====================================
@@ -15,11 +15,12 @@ Build-Depends-Indep:
  libhttpclient-java,
  libjackson2-core-java (>= 2.10.0),
  libjackson2-databind-java,
+ liblogback-java,
  libmaven-bundle-plugin-java (>= 3.5.1),
  libmaven-shade-plugin-java (>= 3.1.1),
  libmockito-java,
  libslf4j-java (>= 1.7.25),
-Standards-Version: 4.4.1
+Standards-Version: 4.6.0
 Rules-Requires-Root: no
 Vcs-Git: https://salsa.debian.org/java-team/jsonld-java.git
 Vcs-Browser: https://salsa.debian.org/java-team/jsonld-java
@@ -28,7 +29,6 @@ Homepage: https://github.com/jsonld-java/jsonld-java
 Package: libjsonld-java
 Architecture: all
 Depends:
- ${maven:CompileDepends},
  ${maven:Depends},
  ${misc:Depends},
 Suggests:


=====================================
debian/upstream/metadata
=====================================
@@ -0,0 +1,2 @@
+---
+Repository: https://github.com/jsonld-java/jsonld-java.git


=====================================
pom.xml
=====================================
@@ -4,7 +4,7 @@
        <modelVersion>4.0.0</modelVersion>
        <groupId>com.github.jsonld-java</groupId>
        <artifactId>jsonld-java-parent</artifactId>
-       <version>0.13.3</version>
+       <version>0.13.4</version>
        <name>JSONLD Java :: Parent</name>
        <description>Json-LD Java Parent POM</description>
        <packaging>pom</packaging>
@@ -43,7 +43,8 @@
                <httpcore.version>4.4.14</httpcore.version>
                <jackson.version>2.11.4</jackson.version>
                <junit.version>4.13.2</junit.version>
-               <slf4j.version>1.7.30</slf4j.version>
+               <slf4j.version>1.7.32</slf4j.version>
+               <logback.version>1.2.7</logback.version>
 
                <last-compare-version>0.11.0</last-compare-version>
        </properties>
@@ -96,9 +97,9 @@
                                <scope>runtime</scope>
                        </dependency>
                        <dependency>
-                               <groupId>org.slf4j</groupId>
-                               <artifactId>slf4j-log4j12</artifactId>
-                               <version>${slf4j.version}</version>
+                               <groupId>ch.qos.logback</groupId>
+                               <artifactId>logback-classic</artifactId>
+                               <version>${logback.version}</version>
                                <scope>test</scope>
                        </dependency>
                        <dependency>



View it on GitLab: 
https://salsa.debian.org/java-team/jsonld-java/-/compare/df5dfb53f61b810a8d124c08f9cc22b723edd05f...422978271f6064b42b47551f0b86f703944c2bb5

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/jsonld-java/-/compare/df5dfb53f61b810a8d124c08f9cc22b723edd05f...422978271f6064b42b47551f0b86f703944c2bb5
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

Reply via email to