You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by al...@apache.org on 2016/10/20 16:44:02 UTC

[1/2] brooklyn-server git commit: Break version range dependency on jackson-databind

Repository: brooklyn-server
Updated Branches:
  refs/heads/master 44d11e283 -> 0b474bbe7


Break version range dependency on jackson-databind

com.maxmind.db:maxmind-db:jar:1.2.1 depends on jackson-databind [2.7.0,)
which causes excessive download of dependencies (all versions in the range,
including snapshots). We already include it explicitly anyway so can save on
the extra http requests. It's also forces maven to check frequently whether
new versions are available so it can use them.


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/dd3c5282
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/dd3c5282
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/dd3c5282

Branch: refs/heads/master
Commit: dd3c52823c7a5d01d77d61d94f9dc0e41246ceda
Parents: 44d11e2
Author: Svetoslav Neykov <sv...@cloudsoftcorp.com>
Authored: Wed Oct 19 19:22:09 2016 +0100
Committer: Svetoslav Neykov <sv...@cloudsoftcorp.com>
Committed: Wed Oct 19 19:22:09 2016 +0100

----------------------------------------------------------------------
 core/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/dd3c5282/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index 004364e..cda05c3 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -145,6 +145,19 @@
         <dependency>
             <groupId>com.maxmind.geoip2</groupId>
             <artifactId>geoip2</artifactId>
+            <exclusions>
+              <exclusion>
+                <!--
+                  com.maxmind.db:maxmind-db:jar:1.2.1 depends on jackson-databind [2.7.0,)
+                  which causes excessive download of dependencies (all versions in the range,
+                  including snapshots). We already include it explicitly anyway so can save on
+                  the extra http requests. It's also forces maven to check frequently whether
+                  new versions are available so it can use them.
+                -->
+                <groupId>com.fasterxml.jackson.core</groupId>
+                <artifactId>jackson-databind</artifactId>
+              </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>


[2/2] brooklyn-server git commit: This closes #389

Posted by al...@apache.org.
This closes #389


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/0b474bbe
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/0b474bbe
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/0b474bbe

Branch: refs/heads/master
Commit: 0b474bbe72fa3f399dbae79259c37f9df8e53555
Parents: 44d11e2 dd3c528
Author: Aled Sage <al...@gmail.com>
Authored: Thu Oct 20 17:43:43 2016 +0100
Committer: Aled Sage <al...@gmail.com>
Committed: Thu Oct 20 17:43:43 2016 +0100

----------------------------------------------------------------------
 core/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------