Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
56e8b473
Commit
56e8b473
authored
Apr 11, 2022
by
yhy
Browse files
修复插件依赖,及使用环境变量传递jvm参数和java参数
parent
5aeabbc5
Changes
3
Hide whitespace changes
Inline
Side-by-side
jeepay-manager/pom.xml
View file @
56e8b473
...
...
@@ -130,8 +130,15 @@
</plugin>
<plugin>
<groupId>
org.eclipse.jkube
</groupId>
<artifactId>
kubernetes-maven-plugin
</artifactId>
<groupId>
com.google.cloud.tools
</groupId>
<artifactId>
jib-maven-plugin
</artifactId>
<configuration>
<container>
<entrypoint>
sh,-c,java $JVM_OPTS -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file ) $JAVA_ARGS
</entrypoint>
</container>
</configuration>
</plugin>
</plugins>
...
...
jeepay-merchant/pom.xml
View file @
56e8b473
...
...
@@ -135,8 +135,15 @@
</plugin>
<plugin>
<groupId>
org.eclipse.jkube
</groupId>
<artifactId>
kubernetes-maven-plugin
</artifactId>
<groupId>
com.google.cloud.tools
</groupId>
<artifactId>
jib-maven-plugin
</artifactId>
<configuration>
<container>
<entrypoint>
sh,-c,java $JVM_OPTS -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file ) $JAVA_ARGS
</entrypoint>
</container>
</configuration>
</plugin>
</plugins>
...
...
jeepay-payment/pom.xml
View file @
56e8b473
...
...
@@ -149,6 +149,13 @@
<plugin>
<groupId>
com.google.cloud.tools
</groupId>
<artifactId>
jib-maven-plugin
</artifactId>
<configuration>
<container>
<entrypoint>
sh,-c,java $JVM_OPTS -cp $( cat /app/jib-classpath-file ) $( cat /app/jib-main-class-file ) $JAVA_ARGS
</entrypoint>
</container>
</configuration>
</plugin>
</plugins>
</build>
...
...
Write
Preview
Supports
Markdown
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