File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,13 @@ deploy:
1717 script : bash docker_push.sh
1818 skip_cleanup : true
1919 on :
20- all_branches : true
20+ tags : true
21+ condition : -z "$TRAVIS_PULL_REQUEST_BRANCH"
22+ - provider : script
23+ script : bash docker_push.sh
24+ skip_cleanup : true
25+ on :
26+ branch : master
2127 condition : -z "$TRAVIS_PULL_REQUEST_BRANCH"
2228# tags: true / false => has precendence over the branch condition
2329# condition: "foo == bar && baz==bat"
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7- ## [ Unreleased]
7+ ## [ Unreleased - 0.2]
8+ - Kafka 1.1.0
9+ - Updated Embedded Kafka to v1.1.0-kafka1.1.0 (test dependency)
810
911
1012## [ 0.1] - 08/03/2017
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name := "kafka-security-manager"
22
33organization := " com.github.simplesteph.ksm"
44
5- version := " 0.1 -SNAPSHOT"
5+ version := " 0.2 -SNAPSHOT"
66
77scalaVersion := " 2.12.4"
88
@@ -11,12 +11,15 @@ lazy val root = (project in file("."))
1111 .enablePlugins(DockerPlugin )
1212
1313
14- resolvers += " Artima Maven Repository" at " http://repo.artima.com/releases"
14+ resolvers ++= Seq (
15+ " Artima Maven Repository" at " http://repo.artima.com/releases" ,
16+ " confluent" at " https://packages.confluent.io/maven/" ,
17+ )
1518
1619libraryDependencies ++= Seq (
1720 // kafka
18- " org.apache.kafka" %% " kafka" % " 1.0.1 " ,
19- " net.manub" %% " scalatest-embedded-kafka" % " 1.0.0 " % " test" ,
21+ " org.apache.kafka" %% " kafka" % " 1.1.0 " ,
22+ " net.manub" %% " scalatest-embedded-kafka" % " 1.1.0-kafka1.1 " % " test" ,
2023
2124 // logging
2225 " org.slf4j" % " slf4j-api" % " 1.7.25" ,
You can’t perform that action at this time.
0 commit comments