Skip to content

Commit

Permalink
Add travis build config
Browse files Browse the repository at this point in the history
  • Loading branch information
tronghn committed May 30, 2018
1 parent 0472f07 commit ac7573f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ build/
# Maven
log/
target/
.gradle/
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
- chmod +x gradle/wrapper/gradle-wrapper.jar
script:
- ./gradlew test build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# KafkaPlainSaslServer2AD
# kafka-plain-saslserver-2-ad [![Build Status](https://travis-ci.org/navikt/kafka-plain-saslserver-2-ad.svg?branch=master)](https://travis-ci.org/navikt/kafka-plain-saslserver-2-ad)
Enhancing kafka with
- customized PlainSaslServer using LDAPS simple bind for authentication
- customized SimpleACLAuthorizer using LDAPS compare-matched for group membership verification
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ shadowJar {
}
}

publishing {
/*publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
Expand All @@ -94,4 +94,4 @@ publishing {
task copyJarToKafka(type: Copy) {
from kafkaJARSrc
into kafkaJARDest
}
}*/

0 comments on commit ac7573f

Please sign in to comment.