Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
schbrain-parent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
panwangnan
schbrain-parent
Commits
e9835533
Commit
e9835533
authored
Jan 12, 2022
by
liaozan
🏀
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'main' into docker-image
# Conflicts: # pom.xml
parents
7a017e4b
2c69a212
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
26 deletions
+47
-26
pom.xml
pom.xml
+47
-26
No files found.
pom.xml
View file @
e9835533
...
...
@@ -41,6 +41,8 @@
<schbrain-apollo.version>
1.0.1-SNAPSHOT
</schbrain-apollo.version>
<schbrain-logger.version>
1.0.1-SNAPSHOT
</schbrain-logger.version>
<schbrain-oss.version>
1.0.1-SNAPSHOT
</schbrain-oss.version>
<schbrain-xxl.version>
1.0.0-SNAPSHOT
</schbrain-xxl.version>
<schbrain-common.version>
1.0.1-SNAPSHOT
</schbrain-common.version>
<schbrain-web-common.version>
1.0.1-SNAPSHOT
</schbrain-web-common.version>
...
...
@@ -52,28 +54,27 @@
<guava.version>
31.0.1-jre
</guava.version>
<!-- used for apollo -->
<guice.version>
5.0.1
</guice.version>
<hutool.version>
5.7.1
8
</hutool.version>
<hutool.version>
5.7.1
9
</hutool.version>
<commons-collections4.version>
4.4
</commons-collections4.version>
<commons-io.version>
2.11.0
</commons-io.version>
<!-- excel -->
<easyexcel.version>
3.0.5
</easyexcel.version>
<!-- database related -->
<mybatis-plus.version>
3.5.0
</mybatis-plus.version>
<dynamic-datasource.version>
3.5.0
</dynamic-datasource.version>
<druid.version>
1.2.8
</druid.version>
<!-- dubbo related -->
<dubbo.version>
3.0.5
</dubbo.version>
<curator.version>
4.2.0
</curator.version>
<zookeeper.version>
3.4.14
</zookeeper.version>
<!-- apollo -->
<apollo.version>
1.9.2
</apollo.version>
<!-- aliyun -->
<aliyun.oss.version>
3.13.2
</aliyun.oss.version>
<!-- logstash-logback-encoder -->
<logstash-logback-encoder.version>
7.0.1
</logstash-logback-encoder.version>
<!-- xxl-job -->
<xxl-job.version>
2.0.2
</xxl-job.version>
<!-- maven plugins -->
<flatten-maven-plugin.version>
1.2.7
</flatten-maven-plugin.version>
...
...
@@ -112,6 +113,11 @@
<artifactId>
oss-spring-boot-starter
</artifactId>
<version>
${schbrain-oss.version}
</version>
</dependency>
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
xxl-job-spring-boot-starter
</artifactId>
<version>
${schbrain-xxl.version}
</version>
</dependency>
<dependency>
<groupId>
com.schbrain.common
</groupId>
<artifactId>
common
</artifactId>
...
...
@@ -155,6 +161,11 @@
<artifactId>
fastjson
</artifactId>
<version>
${fastjson.version}
</version>
</dependency>
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
easyexcel
</artifactId>
<version>
${easyexcel.version}
</version>
</dependency>
<!-- dubbo related -->
<!-- user single dependency instead of dubbo-bom,because dubbo-bom set the spring version-->
<dependency>
...
...
@@ -241,6 +252,10 @@
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
</exclusion>
<exclusion>
<groupId>
io.netty
</groupId>
<artifactId>
netty
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
...
...
@@ -275,6 +290,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
druid-spring-boot-starter
</artifactId>
<version>
${druid.version}
</version>
</dependency>
<!-- apollo -->
<dependency>
...
...
@@ -305,6 +325,11 @@
<artifactId>
logstash-logback-encoder
</artifactId>
<version>
${logstash-logback-encoder.version}
</version>
</dependency>
<dependency>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job-core
</artifactId>
<version>
${xxl-job.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
...
...
@@ -313,6 +338,15 @@
<plugin>
<groupId>
pl.project13.maven
</groupId>
<artifactId>
git-commit-id-plugin
</artifactId>
<executions>
<execution>
<id>
commitInfo
</id>
<phase>
compile
</phase>
<goals>
<goal>
revision
</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>
false
</verbose>
<failOnNoGitDirectory>
false
</failOnNoGitDirectory>
...
...
@@ -389,24 +423,15 @@
<id>
repackage
</id>
<phase>
package
</phase>
<goals>
<goal>
build-info
</goal>
<goal>
repackage
</goal>
<goal>
build-image
</goal>
</goals>
<configuration>
<imageName>
${docker.repository}/${project.parent.artifactId}:${project.parent.version}
</imageName>
<cleanCache>
true
</cleanCache>
<pullPolicy>
IF_NOT_PRESENT
</pullPolicy>
<publish>
false
</publish>
<docker>
<publishRegistry>
<username>
liwu@1890587021077463
</username>
<!--suppress UnresolvedMavenProperty -->
<password>
<![CDATA[9H7ny!QPW@!L6@n ]]>
</password>
<url>
registry.cn-hangzhou.aliyuncs.com
</url>
</publishRegistry>
</docker>
</configuration>
</execution>
<execution>
<id>
buildInfo
</id>
<phase>
compile
</phase>
<goals>
<goal>
build-info
</goal>
</goals>
</execution>
</executions>
</plugin>
...
...
@@ -420,7 +445,6 @@
<id>
dev
</id>
<properties>
<spring.profile>
dev
</spring.profile>
<docker.repository>
registry.cn-hangzhou.aliyuncs.com/schoolbrain
</docker.repository>
</properties>
<activation>
<activeByDefault>
true
</activeByDefault>
...
...
@@ -431,7 +455,6 @@
<id>
test
</id>
<properties>
<spring.profile>
test
</spring.profile>
<docker.repository>
registry.cn-hangzhou.aliyuncs.com/schoolbrain
</docker.repository>
</properties>
</profile>
<!-- 预发布环境 -->
...
...
@@ -439,7 +462,6 @@
<id>
pre
</id>
<properties>
<spring.profile>
pre
</spring.profile>
<docker.repository>
registry.cn-hangzhou.aliyuncs.com/schoolbrain
</docker.repository>
</properties>
</profile>
<!-- 生产环境 -->
...
...
@@ -447,7 +469,6 @@
<id>
prod
</id>
<properties>
<spring.profile>
prod
</spring.profile>
<docker.repository>
registry-vpc.cn-hangzhou.aliyuncs.com/schbrain
</docker.repository>
</properties>
</profile>
<!-- Java8 -->
...
...
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