File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ apply plugin: 'jacoco'
99apply plugin : ' maven-publish'
1010
1111group ' com.factset.sdk'
12- version ' 1.1.3 '
12+ version ' 1.1.4-SNAPSHOT '
1313
1414dependencies {
1515 implementation ' org.slf4j:slf4j-api:1.7.36'
@@ -32,16 +32,20 @@ dependencies {
3232 testAnnotationProcessor ' org.projectlombok:lombok:1.18.36'
3333}
3434
35- task sourcesJar ( type : Jar ) {
35+ tasks . register( ' sourcesJar ' , Jar ) {
3636 archiveClassifier = ' sources'
3737 from sourceSets. main. allSource
3838}
3939
40- task javadocJar ( type : Jar ) {
40+ tasks . register( ' javadocJar ' , Jar ) {
4141 archiveClassifier = ' javadoc'
4242 from javadoc. destinationDir
4343}
4444
45+ compileJava {
46+ sourceCompatibility = " 1.8"
47+ targetCompatibility = " 1.8"
48+ }
4549
4650test {
4751 useJUnitPlatform()
@@ -64,10 +68,9 @@ artifacts {
6468 archives sourcesJar
6569}
6670
67-
6871publishing {
6972 publications {
70- mavenJava( MavenPublication ) {
73+ register( " mavenJava " , MavenPublication ) {
7174 from components. java
7275
7376 artifact sourcesJar
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.4.1 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.2 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments