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.
455 lines
18 KiB
455 lines
18 KiB
|
1 month ago
|
<?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.2.12</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<groupId>com.techsor</groupId>
|
||
|
|
<artifactId>dongjian-dashboard-back</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>dongjian-dashboard-back</name>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>dongjian-dashboard-back-util</module>
|
||
|
|
<module>dongjian-dashboard-back-common</module>
|
||
|
|
<module>dongjian-dashboard-back-model</module>
|
||
|
|
<module>dongjian-dashboard-back-dao</module>
|
||
|
|
<module>dongjian-dashboard-back-service</module>
|
||
|
|
<module>dongjian-dashboard-back-controller</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
<description>data center business</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<main.basedir>com.dongjian.dashboard.back.DongjianDashboardBackApplication</main.basedir>
|
||
|
|
<java.version>17</java.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.42</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<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.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- <dependency> -->
|
||
|
|
<!-- <groupId>io.springfox</groupId> -->
|
||
|
|
<!-- <artifactId>springfox-boot-starter</artifactId> -->
|
||
|
|
<!-- <version>3.0.0</version> -->
|
||
|
|
<!-- </dependency> -->
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-core</artifactId>
|
||
|
|
<version>2.19.0</version> <!-- 与 jackson-databind 版本一致 -->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-databind</artifactId>
|
||
|
|
<version>2.19.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-annotations</artifactId>
|
||
|
|
<version>2.19.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>3.0.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-j</artifactId>
|
||
|
|
<version>9.3.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>druid</artifactId>
|
||
|
|
<version>1.1.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.guava</groupId>
|
||
|
|
<artifactId>guava</artifactId>
|
||
|
|
<version>33.4.5-jre</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.yaml</groupId>
|
||
|
|
<artifactId>snakeyaml</artifactId>
|
||
|
|
<version>2.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.18</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>ch.qos.logback</groupId>
|
||
|
|
<artifactId>logback-core</artifactId>
|
||
|
|
<version>1.5.18</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-compress</artifactId>
|
||
|
|
<version>1.27.1</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>com.github.pagehelper</groupId>
|
||
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
|
<version>1.4.7</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/io.lettuce/lettuce-core -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.lettuce</groupId>
|
||
|
|
<artifactId>lettuce-core</artifactId>
|
||
|
|
<version>6.7.1.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- log4j -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
|
<artifactId>log4j-core</artifactId>
|
||
|
|
<version>2.25.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
|
<artifactId>log4j-api</artifactId>
|
||
|
|
<version>2.25.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel</artifactId>
|
||
|
|
<version>4.0.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<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>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>
|
||
|
|
<serverPort>30003</serverPort>
|
||
|
|
|
||
|
|
<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>
|
||
|
|
<loggingMaxHistory>30</loggingMaxHistory>
|
||
|
|
|
||
|
|
<redisHost>r-uf63x4g5p6ir5xao87pd.redis.rds.aliyuncs.com</redisHost>
|
||
|
|
<redisPassword>B2BGn4gK4htgkEwP</redisPassword>
|
||
|
|
|
||
|
|
<webLoginUrl>http://49.234.37.33:92/#/user/login</webLoginUrl>
|
||
|
|
<webAdminLoginUrl>http://49.234.37.33:92/#/user/login</webAdminLoginUrl>
|
||
|
|
|
||
|
|
<mybatisLogLevel>DEBUG</mybatisLogLevel>
|
||
|
|
|
||
|
|
<thirdBusinessHost>http://127.0.0.1:20016/api</thirdBusinessHost>
|
||
|
|
|
||
|
|
<jvmOpts>-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:G1NewSizePercent=20 -XX:G1MaxNewSizePercent=60 -XX:InitialHeapSize=2g -Xmx3000m -XX:MetaspaceSize=128m -XX:+PrintGCDetails -XX:+PrintGCDatestamps -Xloggc:/home/dongjian-dashboard-back/gc.log</jvmOpts>
|
||
|
|
|
||
|
|
<awsAccessKey>s7tH+iaTl9fpsvI9B1+AyZKsYWkWSIYG</awsAccessKey>
|
||
|
|
<awsSecretKey>A0g07JCxcd+IsHig0fcNLIJs1s2kpLDZypIH1SDaxDs4RTpWg6EAGQ22Dh9lqNR3</awsSecretKey>
|
||
|
|
<awsActionableBucket>tokyobuild-stg-databucket-923770123186</awsActionableBucket>
|
||
|
|
<awsActionableDirectory>datacenter-storeage/</awsActionableDirectory>
|
||
|
|
<awsActionableRoleArn>arn:aws:iam::923770123186:role/tokyo-build-access-ec2-role</awsActionableRoleArn>
|
||
|
|
|
||
|
|
<terraformEnv>stg</terraformEnv>
|
||
|
|
</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>
|
||
|
|
<serverPort>30003</serverPort>
|
||
|
|
|
||
|
|
<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>
|
||
|
|
<loggingMaxHistory>30</loggingMaxHistory>
|
||
|
|
|
||
|
|
<redisHost>r-uf63x4g5p6ir5xao87pd.redis.rds.aliyuncs.com</redisHost>
|
||
|
|
<redisPassword>B2BGn4gK4htgkEwP</redisPassword>
|
||
|
|
|
||
|
|
<webLoginUrl>http://49.234.37.33:92/#/user/login</webLoginUrl>
|
||
|
|
<webAdminLoginUrl>http://49.234.37.33:92/#/user/login</webAdminLoginUrl>
|
||
|
|
|
||
|
|
<thirdBusinessHost>http://127.0.0.1:20016/api</thirdBusinessHost>
|
||
|
|
|
||
|
|
<mybatisLogLevel>INFO</mybatisLogLevel>
|
||
|
|
|
||
|
|
<jvmOpts>-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:G1NewSizePercent=20 -XX:G1MaxNewSizePercent=60 -XX:InitialHeapSize=2g -Xmx3000m -XX:MetaspaceSize=128m -XX:+PrintGCDetails -XX:+PrintGCDatestamps -Xloggc:/home/dongjian-dashboard-back/gc.log</jvmOpts>
|
||
|
|
|
||
|
|
<awsAccessKey>s7tH+iaTl9fpsvI9B1+AyZKsYWkWSIYG</awsAccessKey>
|
||
|
|
<awsSecretKey>A0g07JCxcd+IsHig0fcNLIJs1s2kpLDZypIH1SDaxDs4RTpWg6EAGQ22Dh9lqNR3</awsSecretKey>
|
||
|
|
<awsActionableBucket>tokyobuild-stg-databucket-923770123186</awsActionableBucket>
|
||
|
|
<awsActionableDirectory>datacenter-storeage/</awsActionableDirectory>
|
||
|
|
<awsActionableRoleArn>arn:aws:iam::923770123186:role/tokyo-build-access-ec2-role</awsActionableRoleArn>
|
||
|
|
|
||
|
|
<terraformEnv>stg</terraformEnv>
|
||
|
|
</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>
|
||
|
|
<serverPort>30003</serverPort>
|
||
|
|
|
||
|
|
<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>
|
||
|
|
<loggingMaxHistory>30</loggingMaxHistory>
|
||
|
|
|
||
|
|
<redisHost>r-uf63x4g5p6ir5xao87pd.redis.rds.aliyuncs.com</redisHost>
|
||
|
|
<redisPassword>B2BGn4gK4htgkEwP</redisPassword>
|
||
|
|
|
||
|
|
<webLoginUrl>http://49.234.37.33:92/#/user/login</webLoginUrl>
|
||
|
|
<webAdminLoginUrl>http://49.234.37.33:92/#/user/login</webAdminLoginUrl>
|
||
|
|
|
||
|
|
<thirdBusinessHost>http://127.0.0.1:20016/api</thirdBusinessHost>
|
||
|
|
|
||
|
|
<mybatisLogLevel>INFO</mybatisLogLevel>
|
||
|
|
|
||
|
|
<jvmOpts>-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:G1NewSizePercent=20 -XX:G1MaxNewSizePercent=60 -XX:InitialHeapSize=2g -Xmx3000m -XX:MetaspaceSize=128m -XX:+PrintGCDetails -XX:+PrintGCDatestamps -Xloggc:/home/dongjian-dashboard-back/gc.log</jvmOpts>
|
||
|
|
|
||
|
|
<awsAccessKey>s7tH+iaTl9fpsvI9B1+AyZKsYWkWSIYG</awsAccessKey>
|
||
|
|
<awsSecretKey>A0g07JCxcd+IsHig0fcNLIJs1s2kpLDZypIH1SDaxDs4RTpWg6EAGQ22Dh9lqNR3</awsSecretKey>
|
||
|
|
<awsActionableBucket>tokyobuild-stg-databucket-923770123186</awsActionableBucket>
|
||
|
|
<awsActionableDirectory>datacenter-storeage/</awsActionableDirectory>
|
||
|
|
<awsActionableRoleArn>arn:aws:iam::923770123186:role/tokyo-build-access-ec2-role</awsActionableRoleArn>
|
||
|
|
|
||
|
|
<terraformEnv>stg</terraformEnv>
|
||
|
|
</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>
|