-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Revert 6432dde: Migrate to new Shipkit plugin * Update GitHub read-only authentication token
- Loading branch information
Showing
11 changed files
with
64 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apply from: "$rootDir/gradle/java-publication.gradle" | ||
apply plugin: 'java' | ||
apply plugin: 'antlr' | ||
|
||
dependencies { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apply from: "$rootDir/gradle/java-publication.gradle" | ||
apply plugin: 'java' | ||
|
||
dependencies { | ||
compile deps.'gson' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,50 @@ | ||
apply plugin: "org.shipkit.shipkit-auto-version" | ||
apply plugin: "org.shipkit.shipkit-changelog" | ||
apply plugin: "org.shipkit.shipkit-github-release" | ||
shipkit { | ||
gitHub.repository = "linkedin/coral" | ||
|
||
tasks.named("generateChangelog") { | ||
previousRevision = project.ext.'shipkit-auto-version.previous-tag' | ||
githubToken = System.getenv("GH_WRITE_TOKEN") | ||
repository = "linkedin/coral" | ||
gitHub.readOnlyAuthToken = "967ad570c37790a939" + "366590ca3035ed56b8d2ae" | ||
|
||
// The GitHub write token is required for committing release notes and bumping up project version | ||
// Ensure that the release machine or Travis CI has this env variable exported | ||
gitHub.writeAuthToken = System.getenv("GH_WRITE_TOKEN") | ||
|
||
git.releasableBranchRegex = "master|release/.+" | ||
|
||
team.developers = [ | ||
'wmoustafa:Walaa Eldin Moustafa', | ||
'khaitranq:Khai Tranh', | ||
'funcheetah:Wenye Zhang', | ||
'shardulm94:Shardul Mahadik', | ||
'hotsushi:Sushant Raikar' | ||
] | ||
} | ||
|
||
tasks.named("githubRelease") { | ||
def genTask = tasks.named("generateChangelog").get() | ||
dependsOn genTask | ||
repository = genTask.repository | ||
changelog = genTask.outputFile | ||
githubToken = System.getenv("GH_WRITE_TOKEN") | ||
newTagRevision = System.getenv("TRAVIS_COMMIT") | ||
allprojects { | ||
plugins.withId("org.shipkit.bintray") { | ||
|
||
//Bintray configuration is handled by JFrog Bintray Gradle Plugin | ||
//For reference see the official documentation: https://github.com/bintray/gradle-bintray-plugin | ||
bintray { | ||
// The Bintray API token is required to publish artifacts to Bintray | ||
// Ensure that the release machine or Travis CI has this env variable exported | ||
key = System.getenv("BINTRAY_API_KEY") | ||
pkg { | ||
repo = 'maven' | ||
user = 'lnkd-apa' | ||
userOrg = 'linkedin' | ||
name = 'coral' | ||
licenses = ['BSD 2-Clause'] | ||
labels = [ | ||
'coral', | ||
'sql', | ||
'presto', | ||
'spark', | ||
'hive', | ||
'views' | ||
] | ||
vcsUrl = "https://github.com/linkedin/coral.git" | ||
description = "A library for analyzing, processing, and rewriting views defined in the Hive Metastore, and sharing them across multiple execution engines" | ||
} | ||
publish = true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Version of the produced binaries. | ||
# The version is inferred by shipkit-auto-version Gradle plugin (https://github.com/shipkit/shipkit-auto-version) | ||
version=1.0.* | ||
#Version of the produced binaries. This file is intended to be checked-in. | ||
#It will be automatically bumped by release automation. | ||
version=1.0.19 | ||
previousVersion=1.0.18 |