Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
loit-initproject-doc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
loit-Infrastructure-doc
loit-initproject-doc
Commits
55c191e2
提交
55c191e2
authored
1月 19, 2020
作者:
Administrator
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add doc
上级
e6d455e6
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
137 行增加
和
0 行删除
+137
-0
1、组件库说明.md
2、timeloit组件集成/1、组件库说明.md
+22
-0
2、项目maven 私服 配置.md
2、timeloit组件集成/2、项目maven 私服 配置.md
+115
-0
image-20200119154807743.png
3、other/typora-user-images/image-20200119154807743.png
+0
-0
没有找到文件。
2、timeloit组件集成/1、组件库说明.md
0 → 100644
浏览文件 @
55c191e2
# 一、组件库说明
```
spring-cloud-timeloit --timeloit spring cloud 组件封装
├── spring-cloud-starter-timeloit
│ ├── spring-cloud-starter-timeloit-nacos-discovery --服务注册与发现组件Starter
│ ├── spring-cloud-starter-timeloit-sentinel --服务限流组件组件Starter
├── spring-cloud-timeloit-dependencies --统一依赖版本
├── spring-cloud-timeloit-examples --timeloit组件使用例子
│ ├── seata-example --分布式事务例子
│ │ ├── loit-seata-order-example --分布式事务例子-订单
│ │ ├── loit-seata-storage-example --分布式事务例子-库存
├── spring-cloud-timeloit-nacos-config --配置中心组件封装
├── spring-cloud-timeloit-nacos-discovery --服务注册与发现组件
├── spring-cloud-timeloit-seata --分布式事务组件封装
├── spring-cloud-timeloit-sentinel --流控组件封装
├── spring-cloud-timeloit-sentinel-datasource --限流熔断和流控-规则存储
├── spring-cloud-timeloit-sentinel-gateway --网关限流组件封装-限流
```
2、timeloit组件集成/2、项目maven 私服 配置.md
0 → 100644
浏览文件 @
55c191e2
# Nexus 地址
```
http://39.100.254.140:12010/
```
# maven 配置
C:
\U
sers
\n
ick
\.
m2
\s
ettings.xml
```
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>E:\1maven_repo_jycj</localRepository>
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
<server>
<id>nexus-releases</id>
<username>deployment</username>
<password>loitdev</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>deployment</username>
<password>loitdev</password>
</server>
</servers>
<mirrors>
</mirrors>
<profiles>
</profiles>
</settings>
```
pom.xml
```
<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>
```
跳过测试请加 -Dmaven.test.skip=true
```
clean deploy -Dmaven.test.skip=true
clean install -Dmaven.test.skip=true
```
3、other/typora-user-images/image-20200119154807743.png
0 → 100644
浏览文件 @
55c191e2
71.5 KB
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论