Skip to content

Commit 666ad83

Browse files
committed
psa-demo java version changes to 11
1 parent 26e93f4 commit 666ad83

File tree

9 files changed

+6
-71
lines changed

9 files changed

+6
-71
lines changed
Binary file not shown.
54 Bytes
Binary file not shown.

build.gradle.kts

Lines changed: 0 additions & 3 deletions
This file was deleted.

psa-demo-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ android {
3838

3939
compileOptions {
4040
coreLibraryDesugaringEnabled true
41-
sourceCompatibility = JavaVersion.VERSION_1_8
42-
targetCompatibility = JavaVersion.VERSION_1_8
41+
sourceCompatibility = JavaVersion.VERSION_11
42+
targetCompatibility = JavaVersion.VERSION_11
4343
}
4444

4545
lintOptions {

psa-demo-kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ android {
2525
}
2626
}
2727
compileOptions {
28-
sourceCompatibility JavaVersion.VERSION_1_8
29-
targetCompatibility JavaVersion.VERSION_1_8
28+
sourceCompatibility JavaVersion.VERSION_11
29+
targetCompatibility JavaVersion.VERSION_11
3030
}
3131
kotlinOptions {
32-
jvmTarget = '1.8'
32+
jvmTarget = '11'
3333
}
3434
}
3535

psa-tracker/build.gradle

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -196,68 +196,6 @@ afterEvaluate {
196196
}
197197
}
198198
}
199-
//
200-
//afterEvaluate {
201-
// publishing {
202-
// publications {
203-
// release(MavenPublication) {
204-
// println 'Publishing release:'
205-
// println GROUP
206-
// println POM_ARTIFACT_ID
207-
// println VERSION_NAME
208-
//
209-
// groupId GROUP
210-
// artifactId POM_ARTIFACT_ID
211-
// version VERSION_NAME
212-
//
213-
// from components.release
214-
// artifact sourcesJar
215-
// artifact javadocJar
216-
//
217-
// pom {
218-
// name = POM_NAME
219-
// packaging = POM_PACKAGING
220-
// description = POM_DESCRIPTION
221-
// url = POM_URL
222-
//
223-
// licenses {
224-
// license {
225-
// name = POM_LICENCE_NAME
226-
// url = POM_LICENCE_URL
227-
// distribution = POM_LICENCE_DIST
228-
// }
229-
// }
230-
//
231-
// developers {
232-
// developer {
233-
// id = POM_DEVELOPER_ID
234-
// name = POM_DEVELOPER_NAME
235-
// }
236-
// }
237-
//
238-
// scm {
239-
// url = POM_SCM_URL
240-
// connection = POM_SCM_CONNECTION
241-
// developerConnection = POM_SCM_DEV_CONNECTION
242-
// }
243-
// }
244-
// }
245-
// }
246-
// }
247-
//
248-
// signing {
249-
// if (System.getenv('ORG_GRADLE_PROJECT_signingKey') && System.getenv('ORG_GRADLE_PROJECT_signingPassword')) {
250-
// println 'Found signing credentials. Signing...'
251-
// def signingKey = findProperty("signingKey")
252-
// def signingPassword = findProperty("signingPassword")
253-
// useInMemoryPgpKeys(signingKey, signingPassword)
254-
// sign publishing.publications.release
255-
// println 'Used useInMemoryPgpKeys()'
256-
// } else {
257-
// println 'Signing credentials not found, skipping.'
258-
// }
259-
// }
260-
//}
261199

262200
tasks.withType(DokkaTask.class) {
263201
dokkaSourceSets {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#Sun Aug 18 09:08:06 IST 2024
1+
#Sun Aug 18 09:54:17 IST 2024
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)