Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
loit-build-common
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
loit-Infrastructure
loit-build-common
Commits
834956e6
提交
834956e6
authored
2月 27, 2020
作者:
陈世营
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
项目结构修改
上级
2c5a891e
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
182 行增加
和
28 行删除
+182
-28
pom.xml
loit-build-commom-parent/pom.xml
+146
-10
pom.xml
loit-build-component/pom.xml
+4
-1
pom.xml
loit-build-component/sharding-keygen-leaf/pom.xml
+4
-13
pom.xml
loit-build-spi-common/pom.xml
+10
-2
pom.xml
loit-build-web-common/pom.xml
+4
-2
pom.xml
pom.xml
+14
-0
没有找到文件。
loit-build-commom-parent/pom.xml
浏览文件 @
834956e6
...
...
@@ -2,22 +2,16 @@
<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"
>
<parent>
<artifactId>
loit-build-common
</artifactId>
<groupId>
com.timeloit.project
</groupId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.timeloit.project
</groupId>
<artifactId>
loit-build-commom-parent
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<modules>
<module>
../loit-build-spi-common
</module>
<module>
../loit-build-web-common
</module>
</modules>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<java.version>
1.8
</java.version>
...
...
@@ -41,12 +35,35 @@
<tomcat-embed-core.version>
8.5.34
</tomcat-embed-core.version>
<jacoco.version>
0.8.3
</jacoco.version>
<shardingsphere.version>
5.0.0-RC1-SNAPSHOT
</shardingsphere.version>
<shardingsphere.spi.impl.version>
5.0.0-RC1-SNAPSHOT
</shardingsphere.spi.impl.version>
<maven-compiler-plugin.version>
3.7.0
</maven-compiler-plugin.version>
<lombok.version>
1.18.8
</lombok.version>
<leaf-core.version>
1.0.1
</leaf-core.version>
</properties>
<dependencyManagement>
<dependencies>
<!--own begin-->
<dependency>
<groupId>
com.timeloit.project
</groupId>
<artifactId>
sharding-keygen-leaf
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
com.sankuai.inf.leaf
</groupId>
<artifactId>
leaf-core
</artifactId>
<version>
${leaf-core.version}
</version>
</dependency>
<!--own end-->
<!-- MYSQL -->
<dependency>
<groupId>
mysql
</groupId>
...
...
@@ -131,6 +148,84 @@
<artifactId>
tomcat-embed-core
</artifactId>
<version>
${tomcat-embed-core.version}
</version>
</dependency>
<!--shardingsphere begin-->
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-orchestration-core
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-core-api
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
encrypt-core-common
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-jdbc-core
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-jdbc-orchestration
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-transaction-core
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-transaction-xa-core
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-transaction-base-seata-at
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-jdbc-spring-boot-starter
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-jdbc-orchestration-spring-boot-starter
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-jdbc-spring-namespace
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-jdbc-orchestration-spring-namespace
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-orchestration-reg-zookeeper-curator
</artifactId>
<version>
${shardingsphere.version}
</version>
</dependency>
<dependency>
<groupId>
io.shardingsphere
</groupId>
<artifactId>
sharding-orchestration-reg-etcd
</artifactId>
<version>
${shardingsphere.spi.impl.version}
</version>
</dependency>
<!--shardingsphere end-->
</dependencies>
</dependencyManagement>
...
...
@@ -176,4 +271,44 @@
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>
nexus-releases
</id>
<name>
Nexus Release Repository
</name>
<url>
http://39.100.254.140:12010/repository/maven-releases/
</url>
</repository>
<snapshotRepository>
<id>
nexus-snapshots
</id>
<name>
Nexus Snapshot Repository
</name>
<url>
http://39.100.254.140:12010/repository/maven-snapshots/
</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>
nexus-loit-dev
</id>
<name>
Nexus Repository
</name>
<url>
http://39.100.254.140:12010/repository/maven-public/
</url>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
<releases>
<enabled>
true
</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>
nexus-loit-dev
</id>
<name>
Nexus Plugin Repository
</name>
<url>
http://39.100.254.140:12010/repository/maven-public/
</url>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
<releases>
<enabled>
true
</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
</project>
\ No newline at end of file
loit-build-component/pom.xml
浏览文件 @
834956e6
...
...
@@ -3,13 +3,16 @@
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"
>
<parent>
<artifactId>
loit-build-common
</artifactId>
<groupId>
com.timeloit.project
</groupId>
<artifactId>
loit-build-common
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
loit-build-component
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<modules>
<module>
loit-seata-mybatis-mysql-suport
</module>
...
...
loit-build-component/sharding-keygen-leaf/pom.xml
浏览文件 @
834956e6
...
...
@@ -11,12 +11,13 @@
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
sharding-keygen-leaf
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<name>
sharding-keygen-leaf
</name>
<packaging>
jar
</packaging>
<properties>
<sharding-orchestration-core.version>
5.0.0-RC1-SNAPSHOT
</sharding-orchestration-core.version
>
<!-- <sharding-orchestration-core.version>5.0.0-RC1-SNAPSHOT</sharding-orchestration-core.version>--
>
<java.version>
1.8
</java.version>
<maven.version.range>
[3.0.4,)
</maven.version.range>
...
...
@@ -87,16 +88,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.apache.shardingsphere
</groupId>
<artifactId>
sharding-orchestration-core
</artifactId>
<version>
${sharding-orchestration-core.version}
</version>
</dependency>
<!-- dependency>
<groupId>com.sankuai.inf.leaf</groupId>
<artifactId>leaf-core</artifactId>
<version>${meituan.leaf.version}</version>
</dependency -->
<dependency>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
...
...
@@ -335,11 +327,10 @@
<artifactId>
sharding-orchestration-core
</artifactId>
</dependency>
<!--TODO-->
<dependency>
<groupId>
com.sankuai.inf.leaf
</groupId>
<artifactId>
leaf-core
</artifactId>
<version>
1.0.1
</version>
</dependency>
<dependency>
<groupId>
com.alibaba
</groupId>
...
...
loit-build-spi-common/pom.xml
浏览文件 @
834956e6
...
...
@@ -3,10 +3,10 @@
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"
>
<parent>
<artifactId>
loit-build-commom-parent
</artifactId>
<groupId>
com.timeloit.project
</groupId>
<artifactId>
loit-build-common
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<relativePath>
../
loit-build-commom-parent/
pom.xml
</relativePath>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
@@ -23,6 +23,13 @@
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${lombok.version}
</version>
<scope>
provided
</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
loit-build-web-common/pom.xml
浏览文件 @
834956e6
...
...
@@ -3,10 +3,10 @@
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"
>
<parent>
<artifactId>
loit-build-commom-parent
</artifactId>
<groupId>
com.timeloit.project
</groupId>
<artifactId>
loit-build-common
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<relativePath>
../
loit-build-commom-parent/
pom.xml
</relativePath>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
@@ -23,6 +23,8 @@
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${lombok.version}
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
...
...
pom.xml
浏览文件 @
834956e6
...
...
@@ -6,6 +6,8 @@
<modules>
<module>
loit-build-commom-parent
</module>
<module>
loit-build-component
</module>
<module>
loit-build-spi-common
</module>
<module>
loit-build-web-common
</module>
</modules>
<parent>
...
...
@@ -20,6 +22,18 @@
<version>
1.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
com.timeloit.project
</groupId>
<artifactId>
loit-build-commom-parent
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>
nexus-releases
</id>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论