1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/JSpringYC-JCommons

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
build.gradle 1021 Байт
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
姜永春 Отправлено 21.06.2018 11:53 2255203
apply plugin: 'java'
apply plugin: 'maven'
group 'com.jiangyc'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
// testCompile 'junit:junit:4.12'
testCompile 'org.junit.platform:junit-platform-runner:1.2.0'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.2.0'
testCompile 'org.junit.vintage:junit-vintage-engine:5.2.0'
compileOnly 'org.projectlombok:lombok:1.16.18'
compileOnly 'log4j:log4j:1.2.17'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
javadoc {
options{
encoding "UTF-8"
charSet 'UTF-8'
author true
version true
links "http://docs.oracle.com/javase/7/docs/api"
title "JCommons"
}
}
task sourcesJar(type: Jar) {
from sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
archives sourcesJar
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/JSpringYC-JCommons.git
git@api.gitlife.ru:oschina-mirror/JSpringYC-JCommons.git
oschina-mirror
JSpringYC-JCommons
JSpringYC-JCommons
master