-
-
Notifications
You must be signed in to change notification settings - Fork 735
Update gradle and other dependencies #1122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
96e9829
8c5b604
1cfec9f
e36c84f
ff609a4
24af9af
0732e4d
db695e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| apply plugin: "com.android.library" | ||
| apply plugin: 'maven-publish' | ||
| apply plugin: "io.freefair.android-javadoc-jar" | ||
| apply plugin: "io.freefair.android-sources-jar" | ||
|
|
||
|
|
@@ -32,5 +33,17 @@ dependencies { | |
|
|
||
| testImplementation "junit:junit:4.13.2" | ||
| testImplementation "org.mockito:mockito-core:3.9.0" | ||
| testImplementation "org.robolectric:robolectric:4.6" | ||
| testImplementation "org.robolectric:robolectric:4.6.1" | ||
| } | ||
|
|
||
| afterEvaluate { | ||
| publishing { | ||
| publications { | ||
| // Creates a Maven publication called “debug”. | ||
| debug(MavenPublication) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this correct? It creates a maven publication "debug" but uses components "release".
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the name is not really relevant externally but I will double check. |
||
| // Applies the component for the debug build variant. | ||
| from components.release | ||
| } | ||
| } | ||
| } | ||
| } | ||
| 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-7.0.2-bin.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| jdk: | ||
| - openjdk11 |
Uh oh!
There was an error while loading. Please reload this page.