build.gradle 1.61 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.bazhuayun.analysis'
mainClassName = 'com.taover.bazhuayun.analysis.web.StartUp'
sourceCompatibility = 1.8

repositories {
	maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' }
    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/' }

}

dependencies {
	compile(
		"com.thoughtworks.xstream:xstream:1.4.12",
		"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-mail",
		
		"mysql:mysql-connector-java",    
	    
		"com.hankcs:hanlp:portable-1.7.5",
		
	    "com.aliyun.oss:aliyun-sdk-oss:2.0.7",
	    "com.alibaba:fastjson:1.2.72",
		"com.alibaba:druid-spring-boot-starter:1.1.10",
		
		"com.xuxueli:xxl-job-core:2.1.0",
		"com.taover:com-taover-repository:2.1.22",
		"com.taover:com-taover-easyexcel:2.2.16",
		"com.taover:com-taover-util:1.1.112",
		"cn.hutool:hutool-all:5.2.4",
		"com.taover:com-taover-codegenerate:1.2.11",
		"com.auth0:java-jwt:3.4.0",
		"io.jsonwebtoken:jjwt:0.6.0"		
	)    
}