文章目录
Idea中配置
配置项:gradle位置 及仓库位置
Gradle项目
Task,settings.gradle,build.gradle,wrapper 核心概念
project目录
settings.gradle
如配置root project 及 sub project
rootProject.name = 'poi'
include 'poi', 'poi-ooxml-full', 'poi-ooxml-lite-agent', 'poi-scratchpad',
'poi-ooxml', 'poi-excelant', 'poi-examples', 'poi-integration' , 'poi-ooxml-lite'
build.gradle
配置依赖,插件,镜像源的地方
plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
maven {
url 'https://maven.tuna.tsinghua.edu.cn/nexus/content/groups/public' }
maven {
url 'https://maven.aliyun.com/repository/central' }
maven