forked from lthn/blockchain
Renamed Go SDK API services and documentation from BlockAPI/InfoAPI to BlockUtilsSdkClientGo/InfoUtilsSdkClientGo for consistency. Updated all references, method receivers, and usage examples accordingly. Added new Java SDK client, models, API, documentation, and build files under utils/sdk/client/java. Updated Go module dependencies and added go.sum. Enhanced Go models to support additional properties in JSON unmarshalling.
27 lines
1.2 KiB
Scala
Generated
27 lines
1.2 KiB
Scala
Generated
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "letheanVPN",
|
|
name := "lthn",
|
|
version := "6.0.1",
|
|
scalaVersion := "2.11.12",
|
|
scalacOptions ++= Seq("-feature"),
|
|
compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
|
Compile / packageDoc / publishArtifact := false,
|
|
resolvers += Resolver.mavenLocal,
|
|
libraryDependencies ++= Seq(
|
|
"io.swagger" % "swagger-annotations" % "1.6.5",
|
|
"com.squareup.okhttp3" % "okhttp" % "4.12.0",
|
|
"com.squareup.okhttp3" % "logging-interceptor" % "4.12.0",
|
|
"com.google.code.gson" % "gson" % "2.9.1",
|
|
"org.apache.commons" % "commons-lang3" % "3.18.0",
|
|
"jakarta.ws.rs" % "jakarta.ws.rs-api" % "2.1.6",
|
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.7",
|
|
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test",
|
|
"org.mockito" % "mockito-core" % "3.12.4" % "test"
|
|
)
|
|
)
|