-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
7 changed files
with
58 additions
and
145 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 |
---|---|---|
|
@@ -41,4 +41,30 @@ android.defaults.buildfeatures.shaders=false | |
# resources declared in the library itself and none from the library's dependencies, | ||
# thereby reducing the size of the R class for that library | ||
# https://developer.android.com/studio/releases/gradle-plugin#4.1-nontransitive-r-class | ||
android.nonTransitiveRClass=true | ||
android.nonTransitiveRClass=true | ||
|
||
## Maven Central Publication ## | ||
systemProp.org.gradle.internal.publish.checksums.insecure=true | ||
|
||
# Increase timeout when pushing to Sonatype (otherwise we get timeouts) | ||
systemProp.org.gradle.internal.http.socketTimeout=120000 | ||
|
||
GROUP=com.github.skydoves | ||
|
||
POM_URL=https://github.com/skydoves/cloudy/ | ||
POM_SCM_URL=https://github.com/skydoves/cloudy/ | ||
POM_SCM_CONNECTION=scm:git:git://github.com/skydoves/cloudy.git | ||
POM_SCM_DEV_CONNECTION=scm:git:git://github.com/skydoves/cloudy.git | ||
|
||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENCE_DIST=repo | ||
|
||
POM_DEVELOPER_ID=skydoves | ||
POM_DEVELOPER_NAME=Jaewoong Eum | ||
POM_DEVELOPER_URL=https://github.com/cloudy/ | ||
POM_DEVELOPER_EMAIL=[email protected] | ||
|
||
SONATYPE_HOST=DEFAULT | ||
RELEASE_SIGNING_ENABLED=true | ||
SONATYPE_AUTOMATIC_RELEASE=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
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,13 @@ | ||
import com.skydoves.cloudy.Configuration | ||
|
||
apply(plugin = "com.vanniktech.maven.publish") | ||
|
||
rootProject.extra.apply { | ||
val snapshot = System.getenv("SNAPSHOT").toBoolean() | ||
val libVersion = if (snapshot) { | ||
Configuration.snapshotVersionName | ||
} else { | ||
Configuration.versionName | ||
} | ||
set("libVersion", libVersion) | ||
} |
This file was deleted.
Oops, something went wrong.