99 lines
3.9 KiB
XML
99 lines
3.9 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.ims.provider</artifactId>
|
|
<version>5.6.0-RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>bocloud.cloudtowner.provider</artifactId>
|
|
<version>5.6.0-HBCL-RELEASE</version>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
<gson-fire-version>1.8.0</gson-fire-version>
|
|
<swagger-core-version>1.5.20</swagger-core-version>
|
|
<okhttp-version>3.14.9</okhttp-version>
|
|
<gson-version>2.8.9</gson-version>
|
|
<commons-lang3-version>3.11</commons-lang3-version>
|
|
<jackson-databind-nullable-version>0.2.2</jackson-databind-nullable-version>
|
|
<threetenbp-version>1.3.5</threetenbp-version>
|
|
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spotless.version>2.17.3</spotless.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- bocloud.bre -->
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.bre.common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cadk.provider</artifactId>
|
|
<version>${bocloud.bre.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.public.provider</artifactId>
|
|
<version>5.6.0-HBCL-RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>${swagger-core-version}</version>
|
|
</dependency>
|
|
<!-- @Nullable annotation -->
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>${okhttp-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>logging-interceptor</artifactId>
|
|
<version>${okhttp-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.gsonfire</groupId>
|
|
<artifactId>gson-fire</artifactId>
|
|
<version>${gson-fire-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.threeten</groupId>
|
|
<artifactId>threetenbp</artifactId>
|
|
<version>${threetenbp-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.annotation</groupId>
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
<version>${jakarta-annotation-version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>jackson-databind-nullable</artifactId>
|
|
<version>${jackson-databind-nullable-version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |