openai/openai-java

Public

mirrored from https://github.com/openai/openai-javaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.4.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

openai-java-core/build.gradle.kts

41lines · modeblame

6eb3f62eStainless Bot3 years ago1plugins {
2id("openai.kotlin")
3id("openai.publish")
4}
5
d6a37429stainless-app[bot]1 years ago6configurations.all {
7resolutionStrategy {
8// Compile and test against a lower Jackson version to ensure we're compatible with it.
9// We publish with a higher version (see below) to ensure users depend on a secure version by default.
10force("com.fasterxml.jackson.core:jackson-core:2.13.4")
11force("com.fasterxml.jackson.core:jackson-databind:2.13.4")
12force("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
13force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")
14force("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4")
15force("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4")
16}
17}
18
6eb3f62eStainless Bot3 years ago19dependencies {
412d7eb9stainless-app[bot]1 years ago20api("com.fasterxml.jackson.core:jackson-core:2.18.2")
21api("com.fasterxml.jackson.core:jackson-databind:2.18.2")
e8fc6aa6Stainless Bot1 years ago22api("com.google.errorprone:error_prone_annotations:2.33.0")
6eb3f62eStainless Bot3 years ago23
412d7eb9stainless-app[bot]1 years ago24implementation("com.fasterxml.jackson.core:jackson-annotations:2.18.2")
25implementation("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.2")
26implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2")
27implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.2")
af9f9a27Robert Craigie2 years ago28implementation("org.apache.httpcomponents.core5:httpcore5:5.2.4")
29implementation("org.apache.httpcomponents.client5:httpclient5:5.3.1")
6eb3f62eStainless Bot3 years ago30
31testImplementation(kotlin("test"))
af9f9a27Robert Craigie2 years ago32testImplementation(project(":openai-java-client-okhttp"))
33testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
34testImplementation("org.assertj:assertj-core:3.25.3")
35testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
36testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.3")
c843c0f2stainless-app[bot]1 years ago37testImplementation("org.junit-pioneer:junit-pioneer:1.9.1")
c077dca5stainless-app[bot]1 years ago38testImplementation("org.mockito:mockito-core:5.14.2")
39testImplementation("org.mockito:mockito-junit-jupiter:5.14.2")
40testImplementation("org.mockito.kotlin:mockito-kotlin:4.1.0")
6eb3f62eStainless Bot3 years ago41}