Skip to content

Commit

Permalink
Merge pull request #30 from it240884sii/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
ar authored Jan 14, 2025
2 parents 7bb861a + bbcec50 commit c5a8926
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'org.jpos.template'
version = '3.0.0-SNAPSHOT'
sourceCompatibility = 17
targetCompatibility = 17
version = '3.0.1-SNAPSHOT'
sourceCompatibility = 23
targetCompatibility = 23

repositories {
mavenCentral()
Expand All @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation 'org.jpos:jpos:3.0.0-SNAPSHOT'
implementation 'org.jpos:jpos:3.0.1-SNAPSHOT'
}

apply from: 'jpos-app.gradle'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
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.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions jpos-app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ jar.manifest {
}

task sourceJar( type: Jar ) {
classifier = "sources"
archiveClassifier.set("sources")
from sourceSets.main.allSource
}

task javadocJar (type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
archiveClassifier.set("javadoc")
from new File(project.buildDir, 'docs/javadoc')
}

Expand Down

0 comments on commit c5a8926

Please sign in to comment.