Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arxj
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
arxj
Commits
3642f607
Commit
3642f607
authored
3 years ago
by
cs
Browse files
Options
Downloads
Patches
Plain Diff
修复bug
parent
b65845e7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+0
-133
0 additions, 133 deletions
pom.xml
service-biz/service-wechat-applet/service-wechat-applet-biz/pom.xml
+134
-7
134 additions, 7 deletions
...z/service-wechat-applet/service-wechat-applet-biz/pom.xml
with
134 additions
and
140 deletions
pom.xml
+
0
−
133
View file @
3642f607
...
@@ -33,10 +33,6 @@
...
@@ -33,10 +33,6 @@
<spring-boot-admin.version>
2.3.1
</spring-boot-admin.version>
<spring-boot-admin.version>
2.3.1
</spring-boot-admin.version>
<hutool.version>
5.7.4
</hutool.version>
<hutool.version>
5.7.4
</hutool.version>
<velocity-engine-core.version>
2.3
</velocity-engine-core.version>
<velocity-engine-core.version>
2.3
</velocity-engine-core.version>
<dockerfile-maven-version>
1.4.0
</dockerfile-maven-version>
<docker.host>
192.168.0.181:2375
</docker.host>
<docker.image.prefix>
hncy
</docker.image.prefix>
<docker.registry.url>
192.168.2.99:5000
</docker.registry.url>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
</properties>
</properties>
<dependencies>
<dependencies>
...
@@ -129,133 +125,4 @@
...
@@ -129,133 +125,4 @@
</dependencies>
</dependencies>
</dependencyManagement>
</dependencyManagement>
<build>
<resources>
<resource>
<directory>
src/main/resources
</directory>
<filtering>
true
</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<addResources>
true
</addResources>
</configuration>
</plugin>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
dockerfile-maven-plugin
</artifactId>
<version>
${dockerfile-maven-version}
</version>
<executions>
<execution>
<id>
default
</id>
<goals>
<goal>
build
</goal>
<goal>
push
</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>
${docker.registry.url}/${docker.image.prefix}/${project.artifactId}
</repository>
<tag>
${project.version}
</tag>
<buildArgs>
<JAR_FILE>
target/${project.build.finalName}.jar
</JAR_FILE>
</buildArgs>
</configuration>
</plugin>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
docker-maven-plugin
</artifactId>
<version>
1.1.1
</version>
<configuration>
<imageName>
${docker.image.prefix}/${project.artifactId}:${project.version}
</imageName>
<dockerDirectory>
${project.basedir}
</dockerDirectory>
<buildArgs>
<JAR_FILE>
target/${project.build.finalName}.jar
</JAR_FILE>
</buildArgs>
<resources>
<resource>
<targetPath>
/
</targetPath>
<directory>
${project.build.directory}
</directory>
<include>
${project.build.finalName}.jar
</include>
</resource>
</resources>
<dockerHost>
http://${docker.host}
</dockerHost>
<registryUrl>
${docker.registry.url}
</registryUrl>
</configuration>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
${spring-boot.version}
</version>
<configuration>
<excludes>
<exclude>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</exclude>
</excludes>
<layers>
<enabled>
true
</enabled>
</layers>
<image>
<name>
cdhncy.com/arxj/${project.parent.artifactId}:${project.version}
</name>
</image>
</configuration>
<!--剔除pom-->
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<uniqueVersion>
false
</uniqueVersion>
<id>
hncy-release
</id>
<name>
Release Repository
</name>
<url>
http://192.168.2.99:8081/repository/maven-releases/
</url>
</repository>
<snapshotRepository>
<uniqueVersion>
true
</uniqueVersion>
<id>
hncy-snapshot
</id>
<name>
Snapshot Repository
</name>
<url>
http://192.168.2.99:8081/repository/maven-snapshots/
</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>
hncy-repo
</id>
<name>
hncy repo
</name>
<url>
http://192.168.2.99:8081/repository/maven-public/
</url>
</repository>
<repository>
<id>
spring-milestones
</id>
<name>
Spring Milestones
</name>
<url>
https://repo.spring.io/milestone
</url>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
</repositories>
<profiles>
<profile>
<id>
docker
</id>
<properties>
<spring.profiles.active>
docker
</spring.profiles.active>
</properties>
</profile>
</profiles>
</project>
</project>
This diff is collapsed.
Click to expand it.
service-biz/service-wechat-applet/service-wechat-applet-biz/pom.xml
+
134
−
7
View file @
3642f607
...
@@ -15,8 +15,15 @@
...
@@ -15,8 +15,15 @@
<name>
service-wechat-applet-biz
</name>
<name>
service-wechat-applet-biz
</name>
<dependencies>
<properties>
<dockerfile-maven-version>
1.4.0
</dockerfile-maven-version>
<docker.host>
192.168.0.181:2375
</docker.host>
<docker.image.prefix>
hncy
</docker.image.prefix>
<docker.registry.url>
192.168.2.99:5000
</docker.registry.url>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<dependency>
<groupId>
com.hncy
</groupId>
<groupId>
com.hncy
</groupId>
<artifactId>
hncy-lock-spring-boot-starter
</artifactId>
<artifactId>
hncy-lock-spring-boot-starter
</artifactId>
...
@@ -105,21 +112,141 @@
...
@@ -105,21 +112,141 @@
<artifactId>
fastdfs-client
</artifactId>
<artifactId>
fastdfs-client
</artifactId>
<version>
1.26.5
</version>
<version>
1.26.5
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.hncy
</groupId>
<groupId>
com.hncy
</groupId>
<artifactId>
hncy-pageable-spring-boot-starter
</artifactId>
<artifactId>
hncy-pageable-spring-boot-starter
</artifactId>
<version>
1.0
</version>
<version>
1.0
</version>
<scope>
compile
</scope>
<scope>
compile
</scope>
</dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
<resources>
<resource>
<directory>
src/main/resources
</directory>
<filtering>
true
</filtering>
</resource>
</resources>
<plugins>
<plugins>
<plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<addResources>
true
</addResources>
</configuration>
</plugin>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
dockerfile-maven-plugin
</artifactId>
<version>
${dockerfile-maven-version}
</version>
<executions>
<execution>
<id>
default
</id>
<goals>
<goal>
build
</goal>
<goal>
push
</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>
${docker.registry.url}/${docker.image.prefix}/${project.artifactId}
</repository>
<tag>
${project.version}
</tag>
<buildArgs>
<JAR_FILE>
target/${project.build.finalName}.jar
</JAR_FILE>
</buildArgs>
</configuration>
</plugin>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
docker-maven-plugin
</artifactId>
<version>
1.1.1
</version>
<configuration>
<imageName>
${docker.image.prefix}/${project.artifactId}:${project.version}
</imageName>
<dockerDirectory>
${project.basedir}
</dockerDirectory>
<buildArgs>
<JAR_FILE>
target/${project.build.finalName}.jar
</JAR_FILE>
</buildArgs>
<resources>
<resource>
<targetPath>
/
</targetPath>
<directory>
${project.build.directory}
</directory>
<include>
${project.build.finalName}.jar
</include>
</resource>
</resources>
<dockerHost>
http://${docker.host}
</dockerHost>
<registryUrl>
${docker.registry.url}
</registryUrl>
</configuration>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
${spring-boot.version}
</version>
<configuration>
<excludes>
<exclude>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</exclude>
</excludes>
<layers>
<enabled>
true
</enabled>
</layers>
<image>
<name>
cdhncy.com/arxj/${project.parent.artifactId}:${project.version}
</name>
</image>
</configuration>
<!--剔除pom-->
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugin>
</plugins>
</plugins>
</build>
</build>
<distributionManagement>
<repository>
<uniqueVersion>
false
</uniqueVersion>
<id>
hncy-release
</id>
<name>
Release Repository
</name>
<url>
http://192.168.2.99:8081/repository/maven-releases/
</url>
</repository>
<snapshotRepository>
<uniqueVersion>
true
</uniqueVersion>
<id>
hncy-snapshot
</id>
<name>
Snapshot Repository
</name>
<url>
http://192.168.2.99:8081/repository/maven-snapshots/
</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>
hncy-repo
</id>
<name>
hncy repo
</name>
<url>
http://192.168.2.99:8081/repository/maven-public/
</url>
</repository>
<repository>
<id>
spring-milestones
</id>
<name>
Spring Milestones
</name>
<url>
https://repo.spring.io/milestone
</url>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
</repositories>
<profiles>
<profile>
<id>
docker
</id>
<properties>
<spring.profiles.active>
docker
</spring.profiles.active>
</properties>
</profile>
</profiles>
</project>
</project>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment