Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhichao
3 years ago
Commit
60677200f72115921fec8eb3e4a783df1427ce55
1 parent
a4e3b2e0
修改maven配置
1、【无】打包添加时间戳
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
3 deletions
hg-monitor-web-nx/pom.xml
hg-monitor-web-tj/pom.xml
hg-monitor-web-zj/pom.xml
hg-monitor-web-nx/pom.xml
View file @
6067720
...
...
@@ -24,7 +24,7 @@
</dependencies>
<build>
<finalName>
nxweb
-0.0.1-SNAPSHOT
</finalName>
<finalName>
nxweb
_${timestamp}
</finalName>
<resources>
<resource>
<directory>
src/main/resources
</directory>
...
...
@@ -35,6 +35,22 @@
</resources>
<plugins>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
buildnumber-maven-plugin
</artifactId>
<version>
1.4
</version>
<configuration>
<timestampFormat>
yyyyMMdd
</timestampFormat>
</configuration>
<executions>
<execution>
<goals>
<goal>
create-timestamp
</goal>
</goals>
</execution>
</executions>
<inherited>
false
</inherited>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
...
...
hg-monitor-web-tj/pom.xml
View file @
6067720
...
...
@@ -24,7 +24,7 @@
</dependencies>
<build>
<finalName>
tjweb
</finalName>
<finalName>
tjweb
_${timestamp}
</finalName>
<resources>
<resource>
<directory>
src/main/resources
</directory>
...
...
@@ -35,6 +35,22 @@
</resources>
<plugins>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
buildnumber-maven-plugin
</artifactId>
<version>
1.4
</version>
<configuration>
<timestampFormat>
yyyyMMdd
</timestampFormat>
</configuration>
<executions>
<execution>
<goals>
<goal>
create-timestamp
</goal>
</goals>
</execution>
</executions>
<inherited>
false
</inherited>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
...
...
hg-monitor-web-zj/pom.xml
View file @
6067720
...
...
@@ -24,7 +24,7 @@
</dependencies>
<build>
<finalName>
zjweb
</finalName>
<finalName>
zjweb
_${timestamp}
</finalName>
<resources>
<resource>
<directory>
src/main/resources
</directory>
...
...
@@ -38,6 +38,22 @@
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
buildnumber-maven-plugin
</artifactId>
<version>
1.4
</version>
<configuration>
<timestampFormat>
yyyyMMdd
</timestampFormat>
</configuration>
<executions>
<execution>
<goals>
<goal>
create-timestamp
</goal>
</goals>
</execution>
</executions>
<inherited>
false
</inherited>
</plugin>
<!-- 复制资源文件 -->
<plugin>
<artifactId>
maven-resources-plugin
</artifactId>
...
...
Please
register
or
login
to post a comment