You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
596 lines
22 KiB
596 lines
22 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>3.5.7</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<groupId>com.techsor</groupId>
|
|
<artifactId>data-center-business</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>data-center-business</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>data-center-business-util</module>
|
|
<module>data-center-business-common</module>
|
|
<module>data-center-business-model</module>
|
|
<module>data-center-business-dao</module>
|
|
<module>data-center-business-service</module>
|
|
<module>data-center-business-controller</module>
|
|
</modules>
|
|
|
|
<description>data center business</description>
|
|
|
|
<properties>
|
|
<main.basedir>com.techsor.datacenter.business.BusinessApplication</main.basedir>
|
|
<java.version>17</java.version>
|
|
<mysql.version>8.0.11</mysql.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core -->
|
|
<dependency>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
<version>10.1.49</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
<!-- 这里排除掉,使用最新版-->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.minidev</groupId>
|
|
<artifactId>json-smart</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- 使用最新版,不然报错CVE-2023-51074,详情https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path/2.7.0-->
|
|
<dependency>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
<version>2.9.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/net.minidev/json-smart -->
|
|
<dependency>
|
|
<groupId>net.minidev</groupId>
|
|
<artifactId>json-smart</artifactId>
|
|
<version>2.5.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>3.0.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-integration -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-integration</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.integration/spring-integration-mqtt -->
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.integration/spring-integration-mqtt -->
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
<version>6.5.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>1.2.5</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.12.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib -->
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
<version>2.2.21</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.vintage</groupId>
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
<version>5.8.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<!-- swagger
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>2.9.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>2.9.2</version>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
<version>2.8.14</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>io.springfox</groupId> -->
|
|
<!-- <artifactId>springfox-boot-starter</artifactId> -->
|
|
<!-- <version>3.0.0</version> -->
|
|
<!-- </dependency> -->
|
|
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>1.4.7</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<version>9.5.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
|
|
<!-- log4j -->
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>2.24.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>2.24.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.amazonaws</groupId>
|
|
<artifactId>aws-java-sdk-dynamodb</artifactId>
|
|
<version>1.12.782</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>4.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>2.0.24</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>fontbox</artifactId>
|
|
<version>2.0.24</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-core -->
|
|
<dependency>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-core</artifactId>
|
|
<version>11.4.1</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-mysql -->
|
|
<dependency>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-mysql</artifactId>
|
|
<version>11.4.1</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>33.4.5-jre</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.20.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>1.28.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.18.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
<version>1.13.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
<version>5.5.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
<artifactId>httpcore5</artifactId>
|
|
<version>5.3.6</version> <!-- 必须与 httpclient5 版本一致 -->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>2.19.4</version> <!-- 与 jackson-databind 版本一致 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.19.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>2.19.4</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.5.21</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-core</artifactId>
|
|
<version>1.5.21</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.lettuce/lettuce-core -->
|
|
<dependency>
|
|
<groupId>io.lettuce</groupId>
|
|
<artifactId>lettuce-core</artifactId>
|
|
<version>6.8.1.RELEASE</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.netty/netty-common
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-common</artifactId>
|
|
<version>4.2.3.Final</version>
|
|
</dependency>-->
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.netty/netty-handler
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-handler</artifactId>
|
|
<version>4.2.3.Final</version>
|
|
</dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
<artifactId>bom</artifactId>
|
|
<version>2.20.113</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-bom</artifactId>
|
|
<version>4.1.128.Final</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>5.5.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>5.5.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml-lite</artifactId>
|
|
<version>5.5.0</version>
|
|
</dependency>
|
|
|
|
<!-- POI 5.5.0 必须搭配 xmlbeans 5.2.0(否则会冲突) -->
|
|
<dependency>
|
|
<groupId>org.apache.xmlbeans</groupId>
|
|
<artifactId>xmlbeans</artifactId>
|
|
<version>5.2.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/application.properties</exclude>
|
|
</excludes>
|
|
<archive>
|
|
<manifest>
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
<addClasspath>true</addClasspath>
|
|
<mainClass>${main.basedir}</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- lib目录分离, 拷贝依赖到jar外面的lib目录 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<!-- 依赖包输出目录,将来不打进jar包里 -->
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
<excludeTransitive>false</excludeTransitive>
|
|
<stripVersion>false</stripVersion>
|
|
<includeScope>runtime</includeScope>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- resource插件 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<useDefaultDelimiters>true</useDefaultDelimiters>
|
|
<nonFilteredFileExtensions>
|
|
<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>xls</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>pdf</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>zip</nonFilteredFileExtension>
|
|
</nonFilteredFileExtensions>
|
|
</configuration>
|
|
<executions>
|
|
<!--copyresources,把resources目录下的文件复制到,打包目录下-->
|
|
<execution>
|
|
<id>copy-resources</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<outputDirectory>${project.build.directory}/</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*.*</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<!--开发环境-->
|
|
<id>development</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<apiEnable>true</apiEnable>
|
|
|
|
<!-- 数据库设置-->
|
|
<datasourceDNS>rm-bp11k2zm2fr7864428o.mysql.rds.aliyuncs.com:3306</datasourceDNS>
|
|
<datasourceTimeZone>Asia/Shanghai</datasourceTimeZone>
|
|
<datasourceUsername>zhc</datasourceUsername>
|
|
<datasourcePassword>Youqu48bnb1</datasourcePassword>
|
|
|
|
<loggingLevel>DEBUG</loggingLevel>
|
|
<loggingPath>E:/logDemo</loggingPath>
|
|
<loggingAppender>CONSOLELOG</loggingAppender>
|
|
|
|
<redisHost>r-uf63x4g5p6ir5xao87pd.redis.rds.aliyuncs.com</redisHost>
|
|
<redisPassword>B2BGn4gK4htgkEwP</redisPassword>
|
|
|
|
<awsAccesskey>AKIA5OFH5OOZPZCWJRDA</awsAccesskey>
|
|
<awsSecretkey>IFwUPwWWiCpIedyxlwsBfAqQzmoudoe10gYrEPLd</awsSecretkey>
|
|
<awsBucket>tokyo-build-databucket-381659385655</awsBucket>
|
|
<awsBucketAsset>tokyobuild-stg-databucket-923770123186</awsBucketAsset>
|
|
|
|
<ibatisLoggingLog>DEBUG</ibatisLoggingLog>
|
|
<ibatisLoggingLogFactory>DEBUG</ibatisLoggingLogFactory>
|
|
|
|
<datacenterV1QueryUrl>https://api-stg.ttkdatatechbuild.com/datacenter/v1/query</datacenterV1QueryUrl>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skip>false</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<profile>
|
|
<!--测试环境-->
|
|
<id>test</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<apiEnable>true</apiEnable>
|
|
|
|
<!-- 数据库设置-->
|
|
<datasourceDNS>rm-bp11k2zm2fr7864428o.mysql.rds.aliyuncs.com:3306</datasourceDNS>
|
|
<datasourceTimeZone>Asia/Shanghai</datasourceTimeZone>
|
|
<datasourceUsername>zhc</datasourceUsername>
|
|
<datasourcePassword>Youqu48bnb1</datasourcePassword>
|
|
|
|
<loggingLevel>DEBUG</loggingLevel>
|
|
<loggingPath>E:/logDemo</loggingPath>
|
|
<loggingAppender>CONSOLELOG</loggingAppender>
|
|
|
|
<redisHost>r-uf63x4g5p6ir5xao87pd.redis.rds.aliyuncs.com</redisHost>
|
|
<redisPassword>B2BGn4gK4htgkEwP</redisPassword>
|
|
|
|
<awsAccesskey>AKIA5OFH5OOZHM3U3KX4</awsAccesskey>
|
|
<awsSecretkey>Plkid7RDnHc1gGbp2yAv/Scc+ukI0q8vzBuyEBN2</awsSecretkey>
|
|
<awsBucket>tokyo-build-databucket-381659385655</awsBucket>
|
|
<awsBucketAsset>tokyobuild-stg-databucket-923770123186</awsBucketAsset>
|
|
<ibatisLoggingLog>DEBUG</ibatisLoggingLog>
|
|
<ibatisLoggingLogFactory>DEBUG</ibatisLoggingLogFactory>
|
|
|
|
<datacenterV1QueryUrl>https://api-stg.ttkdatatechbuild.com/datacenter/v1/query</datacenterV1QueryUrl>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skip>false</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
|
|
<profile>
|
|
<!--正式环境-->
|
|
<id>production</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<apiEnable>true</apiEnable>
|
|
|
|
<!-- 数据库设置-->
|
|
<datasourceDNS>rm-bp11k2zm2fr7864428o.mysql.rds.aliyuncs.com:3306</datasourceDNS>
|
|
<datasourceTimeZone>Asia/Shanghai</datasourceTimeZone>
|
|
<datasourceUsername>zhc</datasourceUsername>
|
|
<datasourcePassword>Youqu48bnb1</datasourcePassword>
|
|
|
|
<loggingLevel>DEBUG</loggingLevel>
|
|
<loggingPath>E:/logDemo</loggingPath>
|
|
<loggingAppender>CONSOLELOG</loggingAppender>
|
|
|
|
<redisHost>r-uf63x4g5p6ir5xao87pd.redis.rds.aliyuncs.com</redisHost>
|
|
<redisPassword>B2BGn4gK4htgkEwP</redisPassword>
|
|
|
|
<awsAccesskey>AKIA5OFH5OOZHM3U3KX4</awsAccesskey>
|
|
<awsSecretkey>Plkid7RDnHc1gGbp2yAv/Scc+ukI0q8vzBuyEBN2</awsSecretkey>
|
|
<awsBucket>tokyo-build-databucket-381659385655</awsBucket>
|
|
<awsBucketAsset>tokyobuild-stg-databucket-923770123186</awsBucketAsset>
|
|
|
|
<ibatisLoggingLog>DEBUG</ibatisLoggingLog>
|
|
<ibatisLoggingLogFactory>DEBUG</ibatisLoggingLogFactory>
|
|
|
|
<datacenterV1QueryUrl>https://api-stg.ttkdatatechbuild.com/datacenter/v1/query</datacenterV1QueryUrl>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|