diff --git a/yu-wei-yu/ry-set/.gitignore b/yu-wei-yu/ry-set/.gitignore new file mode 100644 index 0000000..b60b03f --- /dev/null +++ b/yu-wei-yu/ry-set/.gitignore @@ -0,0 +1,46 @@ +###################################################################### +# Build Tools + +.gradle +/build/ +!gradle/wrapper/gradle-wrapper.jar + +target/ +!.mvn/wrapper/maven-wrapper.jar + +###################################################################### +# IDE + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### JRebel ### +rebel.xml +### NetBeans ### +nbproject/private/ +build/* +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ + +###################################################################### +# Others +*.log +*.xml.versionsBackup +*.swp + +!*/build/*.java +!*/build/*.html +!*/build/*.xml \ No newline at end of file diff --git a/yu-wei-yu/ry-set/LICENSE b/yu-wei-yu/ry-set/LICENSE new file mode 100644 index 0000000..52087fe --- /dev/null +++ b/yu-wei-yu/ry-set/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 若依 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/yu-wei-yu/ry-set/README.md b/yu-wei-yu/ry-set/README.md new file mode 100644 index 0000000..5cf3734 --- /dev/null +++ b/yu-wei-yu/ry-set/README.md @@ -0,0 +1,26 @@ +## 系统模块 + +~~~ +com.muyu +├── muyu-ui // 前端框架 [80] +├── muyu-gateway // 网关模块 [8080] +├── muyu-auth // 认证中心 [9200] +├── muyu-common // 通用模块 +│ └── muyu-common-core // 核心模块 +│ └── muyu-common-datascope // 权限范围 +│ └── muyu-common-datasource // 多数据源 +│ └── muyu-common-log // 日志记录 +│ └── muyu-common-redis // 缓存服务 +│ └── muyu-common-seata // 分布式事务 +│ └── muyu-common-security // 安全模块 +│ └── muyu-common-swagger // 系统接口 +│ └── muyu-common-system // 系统基础 +├── muyu-modules // 业务模块 +│ └── muyu-system // 系统模块 [9201] +│ └── muyu-gen // 代码生成 [9202] +│ └── muyu-job // 定时任务 [9203] +│ └── muyu-file // 文件服务 [9300] +├── muyu-visual // 图形化管理模块 +│ └── muyu-visual-monitor // 监控中心 [9100] +├──pom.xml // 公共依赖 +~~~ diff --git a/yu-wei-yu/ry-set/pom.xml b/yu-wei-yu/ry-set/pom.xml new file mode 100644 index 0000000..c5d916b --- /dev/null +++ b/yu-wei-yu/ry-set/pom.xml @@ -0,0 +1,309 @@ + + + 4.0.0 + + com.muyu + muyu + 3.6.3 + + muyu + + 微服务系统 + + + 3.6.3 + UTF-8 + UTF-8 + 17 + 2.7.13 + 2021.0.8 + 2021.0.5.0 + 2.7.10 + 3.0.0 + 1.6.2 + 1.27.2 + 2.3.3 + 1.4.7 + 1.2.16 + 3.5.2 + 2.13.0 + 2.3 + 2.0.41 + 0.9.1 + 8.2.2 + 4.1.2 + 2.14.3 + + + + + + + + + org.springframework.cloud + spring-cloud-dependencies + ${spring-cloud.version} + pom + import + + + + + com.alibaba.cloud + spring-cloud-alibaba-dependencies + ${spring-cloud-alibaba.version} + pom + import + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + + com.github.tobato + fastdfs-client + ${tobato.version} + + + + + io.swagger + swagger-models + ${swagger.core.version} + + + io.swagger + swagger-annotations + ${swagger.core.version} + + + + + pro.fessional + kaptcha + ${kaptcha.version} + + + + + com.github.pagehelper + pagehelper-spring-boot-starter + ${pagehelper.boot.version} + + + + + commons-io + commons-io + ${commons.io.version} + + + + + org.apache.poi + poi-ooxml + ${poi.version} + + + + + org.apache.velocity + velocity-engine-core + ${velocity.version} + + + + + com.alibaba.fastjson2 + fastjson2 + ${fastjson.version} + + + + + io.jsonwebtoken + jjwt + ${jjwt.version} + + + + + com.alibaba + transmittable-thread-local + ${transmittable-thread-local.version} + + + + + com.muyu + muyu-common-core + ${muyu.version} + + + + + com.muyu + muyu-common-swagger + ${muyu.version} + + + + + com.muyu + muyu-common-security + ${muyu.version} + + + + + com.muyu + muyu-common-datascope + ${muyu.version} + + + + + com.muyu + muyu-common-datasource + ${muyu.version} + + + + + com.muyu + muyu-common-seata + ${muyu.version} + + + + + com.muyu + muyu-common-log + ${muyu.version} + + + + + com.muyu + muyu-common-redis + ${muyu.version} + + + + + com.muyu + muyu-common-system + ${muyu.version} + + + + + + + muyu-auth + muyu-gateway + muyu-visual + muyu-modules + muyu-common + + pom + + + + + org.springframework.cloud + spring-cloud-starter-bootstrap + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${java.version} + ${java.version} + ${project.build.sourceEncoding} + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + + + repackage + + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + true + + + + compile + + jar + + + + + + + + + + + releases + releases + http://nexus.muyu.com:8081/repository/maven-releases/ + + + + + + public + aliyun nexus + http://nexus.muyu.com:8081/repository/maven-public/ + + true + + + + + + + public + aliyun nexus + http://nexus.muyu.com:8081/repository/maven-public/ + + true + + + false + + + + +