博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gradle_学习_02_gradle多模块构建实例
阅读量:6828 次
发布时间:2019-06-26

本文共 1707 字,大约阅读时间需要 5 分钟。

一、前言

 

 

二、多模块构建

1.工程结构

 

 父工程:weixin-service

子模块:weixin-gz

               weixin-qy

 

2.父工程 weixin-service

(1)build.gradle

buildscript {    ext {        springBootVersion = '2.0.1.RELEASE'    }    repositories {        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }        //mavenCentral()    }    dependencies {        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")    }}//配置所有项目allprojects {    //应用插件    apply plugin: 'java'    apply plugin: 'idea'    apply plugin: 'org.springframework.boot'    apply plugin: 'io.spring.dependency-management'    //公共属性    group = 'com.ray.weixin'    version = '0.0.1-SNAPSHOT'    //编译属性    sourceCompatibility = 1.8    targetCompatibility = 1.8}//构建依赖subprojects {    repositories {        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }    }    dependencies {        compile('org.springframework.boot:spring-boot-starter-thymeleaf')        compile('org.springframework.boot:spring-boot-starter-validation')        compile('org.springframework.boot:spring-boot-starter-web')        compileOnly('org.projectlombok:lombok')        // 5. jackson        compile ('com.alibaba:fastjson:1.2.44')        //6. Redis        compile('org.springframework.boot:spring-boot-starter-data-redis')        //7.Quartz        compile('org.springframework.boot:spring-boot-starter-quartz')        testCompile('org.springframework.boot:spring-boot-starter-test')    }}repositories {    maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }}
View Code

 

(2)settings.gradle

rootProject.name = 'weixin-service'include 'weixin-gz'include 'weixin-qy'

 

 

 

3.子模块 weixin-gz

dependencies {}

 

4.子模块 weixin-qy

dependencies {}

 

 

 

三、参考资料

1.

 

转载地址:http://nhykl.baihongyu.com/

你可能感兴趣的文章
pymongo 通过跳板机连接阿里云 mongoDB
查看>>
1130 host is not allowed to connect to
查看>>
ASP.NET 构建高性能网站 第1篇
查看>>
ASP.NET Web API 记录请求响应数据到日志的一个方法
查看>>
viewpager的pageradapter等adapter
查看>>
Java内部类的使用小结
查看>>
使用Git Submodule管理子模块
查看>>
【CSS】之引入方式
查看>>
C语言中文件操作总结
查看>>
MySQL修改root密码的多种方法
查看>>
硬件的一些性能指标
查看>>
day2-cacti
查看>>
MFC绘图
查看>>
Codevs 1744 格子染色==BZOJ 1296 粉刷匠
查看>>
最小生成树-Prim算法和Kruskal算法
查看>>
(6)dd命令安装Linux
查看>>
机器学习第3课:线性代数回顾(Linear Algebra Review)
查看>>
MathType使用中的四个小技巧
查看>>
ajax
查看>>
【转】淘测试---新时代的测试工程师
查看>>