Skip to content

Commit daa6fc2

Browse files
author
Kristjan Kosic
authored
chore: added source compatibility settings (#127)
1 parent 7389608 commit daa6fc2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ plugins {
77
id 'com.diffplug.gradle.spotless' version '3.27.2'
88
}
99

10+
sourceCompatibility = 1.8
11+
targetCompatibility = 1.8
12+
1013
repositories {
1114
jcenter()
1215
mavenCentral()
@@ -40,19 +43,19 @@ uploadArchives {
4043
mavenDeployer {
4144
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
4245

43-
repository(url: "file://${buildDir}/repo") {}
46+
// repository(url: "file://${buildDir}/repo") {}
4447

4548
// repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2") {
4649
// authentication(userName: '', password: '')
47-
//}
50+
// }
4851

4952
// snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
5053
// authentication(userName: ossrhUsername, password: ossrhPassword)
5154
// }
5255

5356
pom.project {
5457
groupId = 'org.arkecosystem'
55-
version = '1.2.8'
58+
version = '1.2.9'
5659
artifactId = 'crypto'
5760

5861
name = 'java-crypto'

0 commit comments

Comments
 (0)