DASCA/build.gradle

53 lines
1.0 KiB
Groovy
Raw Permalink Normal View History

plugins {
id 'de.undercouch.download'
}
2018-11-01 09:17:58 +00:00
apply plugin: 'eclipse'
allprojects {
apply plugin: 'maven'
group = 'com.logicalhacking.dasca'
version = '0.1-dev-2019-02-21'
2019-01-30 06:18:08 +00:00
}
2019-01-30 06:18:08 +00:00
configure(allprojects - project('com.logicalhacking.dasca.crosslanguage.test.confidential')) {
apply plugin: 'maven-publish'
apply plugin: 'java'
publishing.publications {
mavenJava(MavenPublication) {
from components.java
}
}
publishing {
repositories {
maven {
url = "sftp://artifacts.logicalhacking.com:22/home/brucker/www/artifacts.logicalhacking.com/htdocs/maven3/"
credentials {
username comLogicalhackingArtifactsUser
password comLogicalhackingArtifactsPassword
}
}
}
}
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
2018-10-27 15:01:34 +00:00
maven { url "https://artifacts.logicalhacking.com/maven3" }
maven { url "https://repo.maven.apache.org/maven2" }
}
}