Skip to content

Commit c824fdb

Browse files
On Demand Rides and Deliveriescopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 814750801
1 parent c94b3b5 commit c824fdb

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ publishing {
8282
}
8383

8484
dependencies {
85-
compile 'jstl:jstl:1.2'
85+
implementation 'jstl:jstl:1.2'
8686

8787
annotationProcessor 'com.google.auto.value:auto-value:1.6.2'
8888

@@ -105,14 +105,14 @@ signing {
105105
sign publishing.publications.authLib
106106
}
107107

108-
task javadocJar(type: Jar) {
109-
classifier = 'javadoc'
108+
task javadocJar(type: Jar, dependsOn: javadoc) {
109+
archiveClassifier = 'javadoc'
110110
from 'build/docs/javadoc'
111111
}
112112

113113
task sourcesJar(type: Jar) {
114114
from sourceSets.main.allSource
115-
classifier = 'sources'
115+
archiveClassifier = 'sources'
116116
}
117117

118118
artifacts {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

sample/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ run {
3131
standardInput = System.in
3232
}
3333

34-
sourceSets.all {
35-
configurations.getByName(runtimeClasspathConfigurationName) {
36-
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
37-
}
38-
configurations.getByName(compileClasspathConfigurationName) {
39-
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
40-
}
41-
}
4234
dependencies {
4335
annotationProcessor 'com.google.auto.value:auto-value:1.6.2'
4436

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)