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
29f01581
Commit
29f01581
authored
Oct 18, 2021
by
liaozan
🏀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parent
1abb092d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
118 additions
and
111 deletions
+118
-111
pom.xml
pom.xml
+118
-111
No files found.
pom.xml
View file @
29f01581
...
...
@@ -2,123 +2,130 @@
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
skeleton-parent
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
skeleton-parent
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<properties>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<maven.compiler.source>
11
</maven.compiler.source>
<maven.compiler.target>
11
</maven.compiler.target>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<maven.compiler.source>
11
</maven.compiler.source>
<maven.compiler.target>
11
</maven.compiler.target>
<schbrain-dubbo.version>
1.0.0-SNAPSHOT
</schbrain-dubbo.version>
<schbrain-common.version>
1.0.0-SNAPSHOT
</schbrain-common.version>
<schbrain-dubbo.version>
1.0.0-SNAPSHOT
</schbrain-dubbo.version>
<schbrain-mybatis.version>
1.0.0-SNAPSHOT
</schbrain-mybatis.version>
<schbrain-common.version>
1.0.0-SNAPSHOT
</schbrain-common.version>
<spring-boot.version>
2.5.5
</spring-boot.version>
<dubbo.version>
2.7.14
</dubbo.version>
<mybatis-plus.version>
3.4.3.4
</mybatis-plus.version>
<mybatis.version>
3.5.7
</mybatis.version>
<hutool.version>
5.7.14
</hutool.version>
<curator.version>
5.2.0
</curator.version>
<zookeeper.version>
3.7.0
</zookeeper.version>
</properties>
<spring-boot.version>
2.5.5
</spring-boot.version>
<dubbo.version>
2.7.14
</dubbo.version>
<mybatis-plus.version>
3.4.3.4
</mybatis-plus.version>
<mybatis.version>
3.5.7
</mybatis.version>
<hutool.version>
5.7.14
</hutool.version>
<curator.version>
5.2.0
</curator.version>
<zookeeper.version>
3.7.0
</zookeeper.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- 二方包 -->
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
dubbo-spring-boot-starter
</artifactId>
<version>
${schbrain-dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
com.schbrain.common
</groupId>
<artifactId>
schbrain-common
</artifactId>
<version>
${schbrain-common.version}
</version>
</dependency>
<dependencyManagement>
<dependencies>
<!-- 二方包 -->
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
dubbo-spring-boot-starter
</artifactId>
<version>
${schbrain-dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
mybatis-spring-boot-starter
</artifactId>
<version>
${schbrain-dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
com.schbrain.common
</groupId>
<artifactId>
schbrain-common
</artifactId>
<version>
${schbrain-common.version}
</version>
</dependency>
<!-- 三方包 -->
<!-- dubbo -->
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<artifactId>
dubbo-spring-boot-starter
</artifactId>
<version>
${dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<artifactId>
dubbo
</artifactId>
<version>
${dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-recipes
</artifactId>
<version>
${curator.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-x-discovery
</artifactId>
<version>
${curator.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.zookeeper
</groupId>
<artifactId>
zookeeper
</artifactId>
<version>
${zookeeper.version}
</version>
<exclusions>
<exclusion>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
</exclusion>
<exclusion>
<groupId>
log4j
</groupId>
<artifactId>
log4j
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.baomidou
</groupId>
<artifactId>
mybatis-plus-boot-starter
</artifactId>
<version>
${mybatis-plus.version}
</version>
</dependency>
<dependency>
<groupId>
org.mybatis
</groupId>
<artifactId>
mybatis
</artifactId>
<version>
${mybatis.version}
</version>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<version>
${hutool.version}
</version>
</dependency>
<!-- spring-boot -->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-dependencies
</artifactId>
<version>
${spring-boot.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 三方包 -->
<!-- dubbo -->
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<artifactId>
dubbo-spring-boot-starter
</artifactId>
<version>
${dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<artifactId>
dubbo
</artifactId>
<version>
${dubbo.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-recipes
</artifactId>
<version>
${curator.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-x-discovery
</artifactId>
<version>
${curator.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.zookeeper
</groupId>
<artifactId>
zookeeper
</artifactId>
<version>
${zookeeper.version}
</version>
<exclusions>
<exclusion>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
</exclusion>
<exclusion>
<groupId>
log4j
</groupId>
<artifactId>
log4j
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.baomidou
</groupId>
<artifactId>
mybatis-plus-boot-starter
</artifactId>
<version>
${mybatis-plus.version}
</version>
</dependency>
<dependency>
<groupId>
org.mybatis
</groupId>
<artifactId>
mybatis
</artifactId>
<version>
${mybatis.version}
</version>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<version>
${hutool.version}
</version>
</dependency>
<!-- spring-boot -->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-dependencies
</artifactId>
<version>
${spring-boot.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
<version>
3.2.1
</version>
<executions>
<execution>
<phase>
compile
</phase>
<goals>
<goal>
jar-no-fork
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
<version>
3.2.1
</version>
<executions>
<execution>
<phase>
compile
</phase>
<goals>
<goal>
jar-no-fork
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
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