Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"cliVersion": "4.43.1",
"generatorName": "fernapi/fern-java-sdk",
"generatorVersion": "3.44.6",
"generatorConfig": {
"client-class-name": "BaseSchematic",
"generate-unknown-as-json-node": true,
"enable-wire-tests": false,
"custom-dependencies": [
"testImplementation org.mockito:mockito-core:5.3.1",
"testImplementation org.mockito:mockito-junit-jupiter:5.3.1"
]
},
"originGitCommit": "2717563b79232180e36aa245da14c045650ea31b",
"sdkVersion": "1.3.1"
}
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: ci

on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
compile:
runs-on: ubuntu-latest
Expand Down
25 changes: 12 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ repositories {
}

dependencies {
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
api 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.2'
api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
api 'com.squareup.okhttp3:okhttp:5.2.1'
api 'com.fasterxml.jackson.core:jackson-databind:2.18.6'
api 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.6'
api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.6'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
Expand Down Expand Up @@ -49,7 +49,7 @@ java {

group = 'com.schematichq'

version = '1.3.0'
version = '1.3.1'

jar {
dependsOn(":generatePomFileForMavenPublication")
Expand Down Expand Up @@ -80,22 +80,21 @@ publishing {
maven(MavenPublication) {
groupId = 'com.schematichq'
artifactId = 'schematic-java'
version = '1.3.0'
version = '1.3.1'
from components.java
pom {
name = 'schematic'
description = 'The official SDK of schematic'
url = 'https://buildwithfern.com'
name = 'Schematic'
description = 'Official Java SDK for Schematic'
url = 'https://schematichq.com'
licenses {
license {
name = 'The MIT License (MIT)'
url = 'https://mit-license.org/'
name = 'MIT'
}
}
developers {
developer {
name = 'schematic'
email = 'developers@schematic.com'
name = 'Schematic'
email = 'support@schematichq.com'
}
}
scm {
Expand Down
Loading
Loading