Skip to content

Commit

Permalink
Fix third party versions so we we're no longer dependant on the
Browse files Browse the repository at this point in the history
deprecated Google Code repo.

Signed-off-by: Chris Larsen <[email protected]>
  • Loading branch information
manolama committed Apr 14, 2015
1 parent 6c075ef commit e22f0eb
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion third_party/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

ASYNCHBASE_THIRD_PARTY_BASE_URL := http://opentsdb.googlecode.com/files
ASYNCHBASE_THIRD_PARTY_BASE_URL := http://central.maven.org/maven2/
FETCH_DEPENDENCY := ./build-aux/fetchdep.sh "$$@"
THIRD_PARTY =

Expand Down
6 changes: 3 additions & 3 deletions third_party/logback/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

http://central.maven.org/maven2/ch/qos/logback/logback-classic/1.0.13/logback-classic-1.0.13.jar
LOGBACK_VERSION := 1.0.13

LOGBACK_CLASSIC_VERSION := $(LOGBACK_VERSION)
LOGBACK_CLASSIC := third_party/logback/logback-classic-$(LOGBACK_CLASSIC_VERSION).jar
LOGBACK_CLASSIC_BASE_URL := $(ASYNCHBASE_THIRD_PARTY_BASE_URL)
LOGBACK_CLASSIC_BASE_URL := http://central.maven.org/maven2/ch/qos/logback/logback-classic/$(LOGBACK_VERSION)

$(LOGBACK_CLASSIC): $(LOGBACK_CLASSIC).md5
set dummy "$(LOGBACK_CLASSIC_BASE_URL)" "$(LOGBACK_CLASSIC)"; shift; $(FETCH_DEPENDENCY)


LOGBACK_CORE_VERSION := $(LOGBACK_VERSION)
LOGBACK_CORE := third_party/logback/logback-core-$(LOGBACK_CORE_VERSION).jar
LOGBACK_CORE_BASE_URL := $(ASYNCHBASE_THIRD_PARTY_BASE_URL)
LOGBACK_CORE_BASE_URL := http://central.maven.org/maven2/ch/qos/logback/logback-core/$(LOGBACK_VERSION)

$(LOGBACK_CORE): $(LOGBACK_CORE).md5
set dummy "$(LOGBACK_CORE_BASE_URL)" "$(LOGBACK_CORE)"; shift; $(FETCH_DEPENDENCY)
Expand Down
2 changes: 1 addition & 1 deletion third_party/logback/logback-classic-1.0.13.jar.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b4dc8eb42150aafd6d9fd3d211807621
18586a078b51918942002ec085338e19
2 changes: 1 addition & 1 deletion third_party/logback/logback-core-1.0.13.jar.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3d5f8ce8dca36e493d39177b71958bd4
945c6dc3c10d3ce784d456a8bbbd0262
2 changes: 1 addition & 1 deletion third_party/mockito/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

MOCKITO_VERSION := 1.9.5
MOCKITO := third_party/mockito/mockito-core-$(MOCKITO_VERSION).jar
MOCKITO_BASE_URL := $(ASYNCHBASE_THIRD_PARTY_BASE_URL)
MOCKITO_BASE_URL := http://central.maven.org/maven2/org/mockito/mockito-core/$(MOCKITO_VERSION)

$(MOCKITO): $(MOCKITO).md5
set dummy "$(MOCKITO_BASE_URL)" "$(MOCKITO)"; shift; $(FETCH_DEPENDENCY)
Expand Down
1 change: 0 additions & 1 deletion third_party/mockito/mockito-1.8.5.jar.md5

This file was deleted.

2 changes: 1 addition & 1 deletion third_party/mockito/mockito-core-1.9.5.jar.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
98f3076e2a691d1ac291624e5a46b80b
6f73cf04a56eb60aaa996506e7c10fc7
1 change: 1 addition & 0 deletions third_party/suasync/async-1.4.0.jar.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
90aa9cc566423f12af88e205804d5161
4 changes: 2 additions & 2 deletions third_party/suasync/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
# POSSIBILITY OF SUCH DAMAGE.

SUASYNC_VERSION := 1.4.0
SUASYNC := third_party/suasync/suasync-$(SUASYNC_VERSION).jar
SUASYNC_BASE_URL := $(ASYNCHBASE_THIRD_PARTY_BASE_URL)
SUASYNC := third_party/suasync/async-$(SUASYNC_VERSION).jar
SUASYNC_BASE_URL := http://central.maven.org/maven2/com/stumbleupon/async/$(SUASYNC_VERSION)

$(SUASYNC): $(SUASYNC).md5
set dummy "$(SUASYNC_BASE_URL)" "$(SUASYNC)"; shift; $(FETCH_DEPENDENCY)
Expand Down
1 change: 0 additions & 1 deletion third_party/suasync/suasync-1.4.0.jar.md5

This file was deleted.

2 changes: 1 addition & 1 deletion third_party/zookeeper/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

ZOOKEEPER_VERSION := 3.3.6
ZOOKEEPER := third_party/zookeeper/zookeeper-$(ZOOKEEPER_VERSION).jar
ZOOKEEPER_BASE_URL := $(ASYNCHBASE_THIRD_PARTY_BASE_URL)
ZOOKEEPER_BASE_URL := http://central.maven.org/maven2/org/apache/zookeeper/zookeeper/$(ZOOKEEPER_VERSION)

$(ZOOKEEPER): $(ZOOKEEPER).md5
set dummy "$(ZOOKEEPER_BASE_URL)" "$(ZOOKEEPER)"; shift; $(FETCH_DEPENDENCY)
Expand Down
2 changes: 1 addition & 1 deletion third_party/zookeeper/zookeeper-3.3.6.jar.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
02786e11c19d1671640992f1bda4a858
a4425412297adf88c157a263d61e2cf1

0 comments on commit e22f0eb

Please sign in to comment.