Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
byit-myth-job
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyuan
byit-myth-job
Commits
6dbfca7c
Commit
6dbfca7c
authored
Apr 26, 2020
by
huangfusuper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改查询全部工作流为懒加载的方式
parent
dcf0d370
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
pom.xml
byit-myth-admin/pom.xml
+0
-1
pom.xml
pom.xml
+31
-0
No files found.
byit-myth-admin/pom.xml
View file @
6dbfca7c
...
...
@@ -138,7 +138,6 @@
<overwrite>
true
</overwrite>
<skip>
false
</skip>
</configuration>
</plugin>
</plugins>
</build>
...
...
pom.xml
View file @
6dbfca7c
...
...
@@ -27,6 +27,8 @@
<relativePath/>
</parent>
<properties>
<docker.image.prefix>
10.0.101.122/myth
</docker.image.prefix>
<docker.image.tag>
v1.0
</docker.image.tag>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
...
...
@@ -214,4 +216,32 @@
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
docker-maven-plugin
</artifactId>
<version>
1.0.0
</version>
<configuration>
<imageName>
${docker.image.prefix}/${project.artifactId}
</imageName>
<!-- optionally overwrite tags every time image is built with docker:build -->
<forceTags>
true
</forceTags>
<imageTags>
<imageTag>
${docker.image.tag}
</imageTag>
</imageTags>
<dockerDirectory>
${project.basedir}
</dockerDirectory>
<resources>
<resource>
<targetPath>
/
</targetPath>
<directory>
${project.build.directory}
</directory>
<include>
${project.build.finalName}.jar
</include>
</resource>
</resources>
<serverId>
harbor
</serverId>
<registryUrl>
10.0.101.122
</registryUrl>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment