Commit 2f73b0c6 authored by 赵啸非's avatar 赵啸非

业务日志添加

parent c68d988c
......@@ -47,6 +47,7 @@
<profiles.nacos.group>DEFAULT_GROUP</profiles.nacos.group>
<profiles.nacos.namespace>smart-gov</profiles.nacos.namespace>
<package.environment>build</package.environment>
<skipDeploy>false</skipDeploy>
</properties>
</profile>
<profile>
......@@ -79,7 +80,8 @@
<profiles.nacos.group>DEFAULT_GROUP</profiles.nacos.group>
<profiles.nacos.namespace>smart-gov</profiles.nacos.namespace>
<profiles.log.path>/mortals/app/logs</profiles.log.path>
<package.environment>build:stage</package.environment>
<package.environment>stage</package.environment>
<skipDeploy>true</skipDeploy>
</properties>
</profile>
<profile>
......@@ -113,6 +115,7 @@
<profiles.nacos.namespace>smart-gov</profiles.nacos.namespace>
<profiles.log.path>/mortals/app/logs</profiles.log.path>
<package.environment>build:prod</package.environment>
<skipDeploy>false</skipDeploy>
</properties>
</profile>
</profiles>
......@@ -267,7 +270,9 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<skip>${skipDeploy}</skip>
</configuration>
<executions>
<!--执行npm install-->
<execution>
......@@ -277,8 +282,7 @@
<goal>exec</goal>
</goals>
<configuration>
<executable>yarn</executable>
<executable>npm install</executable>
<workingDirectory>${project.parent.basedir}/log-manager-ui/admin</workingDirectory>
</configuration>
</execution>
......@@ -290,7 +294,7 @@
<goal>exec</goal>
</goals>
<configuration>
<executable>yarn</executable>
<executable>npm</executable>
<arguments>
<argument>run</argument>
<arguments>${package.environment}</arguments>
......
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