-
Notifications
You must be signed in to change notification settings - Fork 1
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
Removed jcenter and bintray, updated dependencies
- Loading branch information
Showing
12 changed files
with
261 additions
and
168 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,38 @@ | ||
# Do’s and Don’ts | ||
|
||
* **Search tickets before you file a new one.** Add to tickets if you have new information about the issue. | ||
* **Keep tickets short but sweet.** Make sure you include all the context needed to solve the issue. Don't overdo it. Great tickets allow us to focus on solving problems instead of discussing them. | ||
* **Take care of your ticket.** When you spend time to report a ticket with care we'll enjoy fixing it for you. | ||
* **Use [GitHub-flavored Markdown](https://help.github.com/articles/markdown-basics/).** Especially put code blocks and console outputs in backticks (```` ``` ````). That increases the readability. Bonus points for applying the appropriate syntax highlighting. | ||
|
||
## Bug Reports | ||
|
||
In short, since you are most likely a developer, provide a ticket that you _yourself_ would _like_ to receive. | ||
|
||
First check if you are using the latest library version and Kotlin version before filing a ticket. | ||
|
||
Please include steps to reproduce and _all_ other relevant information, including any other relevant dependency and version information. | ||
|
||
## Feature Requests | ||
|
||
Please try to be precise about the proposed outcome of the feature and how it | ||
would related to existing features. | ||
|
||
|
||
## Pull Requests | ||
|
||
We **love** pull requests! | ||
|
||
All contributions _will_ be licensed under the Apache 2 license. | ||
|
||
Code/comments should adhere to the following rules: | ||
|
||
* Names should be descriptive and concise. | ||
* Use four spaces and no tabs. | ||
* Remember that source code usually gets written once and read often: ensure | ||
the reader doesn't have to make guesses. Make sure that the purpose and inner | ||
logic are either obvious to a reasonably skilled professional, or add a | ||
comment that explains it. | ||
* Please add a detailed description. | ||
|
||
If you consistently contribute improvements and/or bug fixes, we're happy to make you a maintainer. |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
allprojects { | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
} | ||
|
||
configurations { | ||
maybeCreate("runtimeClasspath") | ||
maybeCreate("provided") | ||
} | ||
|
||
val copyLibsCompileTask = tasks.create("copyLibsCompile", Copy::class.java) { | ||
from(configurations["runtimeClasspath"]) | ||
into(File(project.rootDir, "build/libs")) | ||
} | ||
|
||
plugins.withId("org.jetbrains.kotlin.jvm") { | ||
tasks.withType(JavaCompile::class.java).all { | ||
dependsOn(copyLibsCompileTask) | ||
sourceCompatibility = JavaVersion.VERSION_11.toString() | ||
targetCompatibility = JavaVersion.VERSION_11.toString() | ||
} | ||
} | ||
} | ||
|
||
tasks.create("clean", Delete::class.java) { | ||
delete(rootProject.buildDir) | ||
} |
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
Binary file not shown.
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.