Commit 33f871d4 authored by hanbing's avatar hanbing

修改厂商简称字段为厂商代码

parent e31b2a1c
...@@ -242,58 +242,58 @@ ...@@ -242,58 +242,58 @@
<!-- mvn clean package -Dmaven.test.skip=true jib:build -DsendCredentialsOverHttp=true --> <!-- mvn clean package -Dmaven.test.skip=true jib:build -DsendCredentialsOverHttp=true -->
<!-- 使用jib 无需深入学习docker, 无需编写Dockerfile --> <!-- 使用jib 无需深入学习docker, 无需编写Dockerfile -->
<!-- <plugin>--> <plugin>
<!-- <groupId>com.google.cloud.tools</groupId>--> <groupId>com.google.cloud.tools</groupId>
<!-- <artifactId>jib-maven-plugin</artifactId>--> <artifactId>jib-maven-plugin</artifactId>
<!-- <version>2.5.2</version>--> <version>2.5.2</version>
<!-- <configuration>--> <configuration>
<!-- &lt;!&ndash;from节点用来设置镜像的基础镜像,相当于Docerkfile中的FROM关键字&ndash;&gt;--> <!--from节点用来设置镜像的基础镜像,相当于Docerkfile中的FROM关键字-->
<!-- <from>--> <from>
<!-- &lt;!&ndash;使用harbor上的openjdk镜像&ndash;&gt;--> <!--使用harbor上的openjdk镜像-->
<!-- <image>10.100.1.87:5000/xinkong/openjdk:8-alpine3.9</image>--> <image>10.100.1.87:5000/xinkong/openjdk:8-alpine3.9</image>
<!-- &lt;!&ndash;harbor服务器的登录信息&ndash;&gt;--> <!--harbor服务器的登录信息-->
<!-- <auth>--> <auth>
<!-- <username>admin</username>--> <username>admin</username>
<!-- <password>Wanji300552</password>--> <password>Wanji300552</password>
<!-- </auth>--> </auth>
<!-- </from>--> </from>
<!-- <to>--> <to>
<!-- <image>10.100.1.87:5000/xinkong/${artifactId}:${version}</image>--> <image>10.100.1.87:5000/xinkong/${artifactId}:${version}</image>
<!-- <auth>--> <auth>
<!-- <username>admin</username>--> <username>admin</username>
<!-- <password>Wanji300552</password>--> <password>Wanji300552</password>
<!-- </auth>--> </auth>
<!-- </to>--> </to>
<!-- <container>--> <container>
<!-- &lt;!&ndash;配置jvm虚拟机参数&ndash;&gt;--> <!--配置jvm虚拟机参数-->
<!-- <jvmFlags>--> <jvmFlags>
<!-- <jvmFlag>-Xms512m</jvmFlag>--> <jvmFlag>-Xms512m</jvmFlag>
<!-- </jvmFlags>--> </jvmFlags>
<!-- &lt;!&ndash;配置使用的时区&ndash;&gt;--> <!--配置使用的时区-->
<!-- <environment>--> <environment>
<!-- <TZ>Asia/Shanghai</TZ>--> <TZ>Asia/Shanghai</TZ>
<!-- </environment>--> </environment>
<!-- &lt;!&ndash;要暴露的端口&ndash;&gt;--> <!--要暴露的端口-->
<!-- <ports>--> <ports>
<!-- <port>32000</port>--> <port>32000</port>
<!-- </ports>--> </ports>
<!-- &lt;!&ndash; <creationTime>2022-10-14T10:08:59.304+08:00</creationTime>&ndash;&gt;--> <!-- <creationTime>2022-10-14T10:08:59.304+08:00</creationTime>-->
<!-- <creationTime>${maven.build.timestamp}</creationTime>--> <creationTime>${maven.build.timestamp}</creationTime>
<!-- <mainClass>net.wanji.utc.UtcApplication</mainClass>--> <mainClass>net.wanji.utc.UtcApplication</mainClass>
<!-- </container>--> </container>
<!-- &lt;!&ndash;可以进行HTTP&ndash;&gt;--> <!--可以进行HTTP-->
<!-- <allowInsecureRegistries>true</allowInsecureRegistries>--> <allowInsecureRegistries>true</allowInsecureRegistries>
<!-- </configuration>--> </configuration>
<!-- <executions>--> <executions>
<!-- <execution>--> <execution>
<!-- <phase>package</phase>--> <phase>package</phase>
<!-- <goals>--> <goals>
<!-- <goal>build</goal>--> <goal>build</goal>
<!-- </goals>--> </goals>
<!-- </execution>--> </execution>
<!-- </executions>--> </executions>
<!-- </plugin>--> </plugin>
</plugins> </plugins>
</build> </build>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment