Skip to content

Commit

Permalink
switch to kafka version for artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew committed Jan 16, 2018
1 parent 52d6cd4 commit 316b984
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ A collection of components to build a real time ingestion pipeline.

## Release Notes

**0.4.0** (Pending)
**0.4.0**

* Add FTPS support to FTP connector, new configuration option `ftp.protocol` introduced, either ftp (default) or ftps.
* Fix for MQTT source High CPU Thanks @masahirom!
Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ allprojects {

//release
rootRelease = "${project.rootDir}/release/"
versionDir = "${rootRelease}/${project.description}-${project.version}-${confluentVersion}"
versionDir = "${rootRelease}/${project.description}-${project.version}-${kafkaVersion}"
confDir = "${versionDir}/conf"
libsDir = "${versionDir}/libs"
binDir = "${versionDir}/bin"
tarName = "${project.description}-${project.version}-${confluentVersion}.tar.gz"
tarName = "${project.description}-${project.version}-${kafkaVersion}.tar.gz"
cliUrl = "https://github.com/landoop/kafka-connect-tools/releases/download/v${connectCLIVersion}/connect-cli"
srCliUrlDarwin = "https://github.com/landoop/schema-registry/releases/download/0.0.1/sr-cli-osx"
srCliUrlLinux = "https://github.com/landoop/schema-registry/releases/download/0.0.1/sr-cli-linux"
Expand Down Expand Up @@ -184,7 +184,7 @@ allprojects {

shadowJar {
configurations = [project.configurations.runtime]
baseName = "${project.name}-${project.version}-${confluentVersion}-all"
baseName = "${project.name}-${project.version}-${kafkaVersion}-all"
classifier = null
version = null

Expand Down Expand Up @@ -325,12 +325,12 @@ allprojects {
name project.name
description project.description
packaging 'jar'
url 'https://github.com/datamountaineer/stream-reactor'
url 'https://github.com/landoop/stream-reactor'

scm {
connection 'scm:git:https://github.com/datamountaineer/stream-reactor.git'
developerConnection 'scm:git:[email protected]:datamountaineer/stream-reactor.git'
url 'https://github.com/datamountaineer/stream-reactor.git'
connection 'scm:git:https://github.com/landoop/stream-reactor.git'
developerConnection 'scm:git:[email protected]:landoop/stream-reactor.git'
url 'https://github.com/landoop/stream-reactor.git'
}

licenses {
Expand Down Expand Up @@ -409,7 +409,7 @@ task collectConfs(type: Copy, dependsOn: prepareReleaseDir) {
task collectBin(type: Copy, dependsOn: prepareReleaseDir) {
from("${project.rootDir}/bin") {
filter { it.replaceAll('@@CLI_VERSION@@', connectCLIVersion) }
filter { it.replaceAll('@@STREAM_REACTOR_VERSION@@', "${project.version}-${confluentVersion}") }
filter { it.replaceAll('@@STREAM_REACTOR_VERSION@@', "${project.version}-${kafkaVersion}") }
}
into binDir
}
Expand Down

0 comments on commit 316b984

Please sign in to comment.