-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
7e1e672
commit e68b402
Showing
8 changed files
with
52 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This came from Gradle! |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/oliverspryn/gradle/SlackUploaderExtension.kt
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
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/oliverspryn/gradle/exceptions/FileUploadException.kt
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 @@ | ||
package com.oliverspryn.gradle.exceptions | ||
|
||
class FileUploadException(reason: String) : Throwable(reason) |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/oliverspryn/gradle/exceptions/MissingChannelException.kt
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 @@ | ||
package com.oliverspryn.gradle.exceptions | ||
|
||
class MissingChannelException : Throwable("Please specify at least one channel to send the file") |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/oliverspryn/gradle/exceptions/MissingFilePathException.kt
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 @@ | ||
package com.oliverspryn.gradle.exceptions | ||
|
||
class MissingFilePathException : Throwable("Please specify a file to upload") |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/oliverspryn/gradle/exceptions/MissingTokenException.kt
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 @@ | ||
package com.oliverspryn.gradle.exceptions | ||
|
||
class MissingTokenException : Throwable("Missing the Slack access token") |