build.gradle 1.6 KB
buildscript {
	repositories {
	    mavenCentral()
	    
	}
	dependencies {
	    classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
	}
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

group = 'com.taover.ai'
mainClassName = 'com.taover.ai.StartUp'
sourceCompatibility = 1.8

repositories {
	jcenter()
	maven{ url 'http://repository.sonatype.org/content/groups/public/' }
	maven{ url 'https://repository.jboss.org/nexus/content/groups/public/' }
	maven{ url 'http://nexus.taover.com:9001/repository/maven-releases/' }
}

ext{
	poiVersion='3.16'
}

dependencies {
	compile(
		"org.springframework.boot:spring-boot-starter",
		"org.springframework.boot:spring-boot-starter-web",
		"org.springframework.boot:spring-boot-starter-jetty",
		"org.springframework.boot:spring-boot-starter-data-jpa",
		"org.springframework.boot:spring-boot-starter-thymeleaf",
		"org.springframework.boot:spring-boot-starter-data-redis",
		"mysql:mysql-connector-java",
		
		"net.sf.json-lib:json-lib:2.2.3:jdk15",
		"net.sf.ezmorph:ezmorph:1.0.4",
		
		"org.apache.velocity:velocity:1.6.4",
	    "com.squareup.okhttp3:okhttp:3.14.1",
		
		"com.alibaba:druid-spring-boot-starter:1.1.10",
		
		"com.xuxueli:xxl-job-core:2.1.0",
		"com.taover:com-taover-repository:2.1.2",
		"com.taover:com-taover-dao:1.0.0",
		"com.taover:com-taover-tools:1.0.0",
		"com.taover:com-taover-util:1.1.28",
		"com.taover:com-taover-codegenerate:1.2.11",
		
		"com.hankcs:hanlp:portable-1.7.5",
		
		"com.aliyun.oss:aliyun-sdk-oss:2.0.7"
	)
}