-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# More details on how to configure the Travis build | ||
# https://docs.travis-ci.com/user/customizing-the-build/ | ||
|
||
language: scala | ||
scala: | ||
- 2.11.8 | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
#Skipping install step to avoid having Travis run arbitrary './gradlew assemble' task | ||
# https://docs.travis-ci.com/user/customizing-the-build/#Skipping-the-Installation-Step | ||
install: | ||
- true | ||
|
||
#Don't build tags | ||
branches: | ||
except: | ||
- /^v\d/ | ||
|
||
#Build and perform release (if needed) | ||
script: | ||
- ./gradlew build -s && ./gradlew ciPerformRelease |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
[{ "name": "James Verbus", "login": "jverbus", "profileUrl": "https:\/\/github.com\/jverbus", "numberOfContributions": "1" }] |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
shipkit { | ||
gitHub.repository = "linkedin/isolation-forest" | ||
gitHub.readOnlyAuthToken = "c2a615888e1b91ac44a80b7cbe450f234a14214f" | ||
gitHub.writeAuthToken = System.getenv("GH_WRITE_TOKEN") | ||
} | ||
|
||
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 { | ||
|
||
key = System.getenv("BINTRAY_API_KEY") | ||
|
||
pkg { | ||
repo = 'maven' | ||
user = 'jverbus' | ||
userOrg = 'linkedin' | ||
name = 'isolation-forest' | ||
licenses = ['BSD 2-CLAUSE'] | ||
labels = ['spark', 'unsupervised learning', 'outlier detection'] | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#Version of the produced binaries. This file is intended to be checked-in. | ||
#It will be automatically bumped by release automation. | ||
version=0.2.1 |