代码拉取完成,页面将自动刷新
同步操作将从 码农俱乐部/iot-ms 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin")
classpath "gradle.plugin.com.arenagod.gradle:mybatis-generator-plugin:1.4"
}
}
plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'idea'
}
group = 'vip.geeker'
version = '1.0.0'
sourceCompatibility = '1.8'
apply plugin: "com.arenagod.gradle.MybatisGenerator"
apply plugin: "idea"
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
}
def mybatisGeneratorCore = 'org.mybatis.generator:mybatis-generator-core:1.3.7'
def itfswMybatisGeneratorPlugin = 'com.itfsw:mybatis-generator-plugin:1.3.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.session:spring-session-data-redis'
// implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.baomidou:mybatis-plus-boot-starter:3.1.2'
implementation 'com.softwareloop:mybatis-generator-lombok-plugin:1.0'
implementation 'com.github.pagehelper:pagehelper-spring-boot-starter:1.2.13'
implementation 'com.deepoove:poi-tl:1.7.3'
implementation 'com.google.guava:guava:18.0'
compile group: 'net.sf.dozer', name: 'dozer', version: '5.5.1'
compile 'org.springframework.boot:spring-boot-starter-aop'
compile mybatisGeneratorCore
compile itfswMybatisGeneratorPlugin
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'org.postgresql:postgresql'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile 'com.google.code.gson:gson:2.6.2'
}
test {
useJUnitPlatform()
}
mybatisGenerator {
verbose = true
configFile = 'src/main/resources/config/generatorConfig.xml'
dependencies {
mybatisGenerator 'org.mybatis.generator:mybatis-generator-core:1.3.7'
mybatisGenerator 'org.postgresql:postgresql:42.2.6'
mybatisGenerator 'com.softwareloop:mybatis-generator-lombok-plugin:1.0'
mybatisGenerator project(':')
mybatisGenerator itfswMybatisGeneratorPlugin
mybatisGenerator mybatisGeneratorCore
}
}
tasks.withType(JavaCompile){
options.encoding="UTF-8"
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。