111 lines
3.5 KiB
Groovy
111 lines
3.5 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:3.14.0"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'maven'
|
|
}
|
|
|
|
apply plugin: "java-library"
|
|
apply plugin: "com.diffplug.gradle.spotless"
|
|
|
|
group 'com.microsoft.signalr'
|
|
|
|
// If we're run from outside MSBuild, just assign a bogus dev version.
|
|
version project.findProperty('packageVersion') ?: "99.99.99-dev"
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
|
|
testCompile 'org.junit.jupiter:junit-jupiter-params:5.3.1'
|
|
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
|
|
testCompile 'org.slf4j:slf4j-jdk14:1.7.25'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
|
|
api 'io.reactivex.rxjava2:rxjava:2.2.2'
|
|
implementation 'org.slf4j:slf4j-api:1.7.25'
|
|
}
|
|
|
|
spotless {
|
|
java {
|
|
licenseHeader '// Copyright (c) .NET Foundation. All rights reserved.\n' +
|
|
'// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.\n\n' // License header
|
|
|
|
importOrder 'java', 'javax', 'org', 'com', 'com.diffplug', '' // A sequence of package names
|
|
|
|
replace 'Not enough space after if', 'if(', 'if ('
|
|
replace 'Not enough space after else', 'else{', 'else {'
|
|
replace 'Not enough space before else', '}else', '} else '
|
|
replace 'Not enough space after try', 'try{', 'try {'
|
|
replace 'Not enough space before finally', '}finally', '} finally'
|
|
replace 'Not enough space after finally', 'finally{', 'finally {'
|
|
replace 'Not enough space after )', '){', ') {'
|
|
replace 'Not enough space after for', 'for(', 'for ('
|
|
replace 'Not enough space after while', 'while (', 'while ('
|
|
replace 'Not enough space after switch', 'switch(', 'switch ('
|
|
replace 'Not enough space after do', 'do{', 'do {'
|
|
replaceRegex 'Too much space after if', 'if +\\(', 'if ('
|
|
trimTrailingWhitespace()
|
|
indentWithSpaces(4)
|
|
removeUnusedImports() // removes any unused imports
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
task sourceJar(type: Jar) {
|
|
classifier "sources"
|
|
from sourceSets.main.allJava
|
|
}
|
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
classifier "javadoc"
|
|
from javadoc.destinationDir
|
|
}
|
|
|
|
task generatePOM {
|
|
pom {
|
|
project {
|
|
inceptionYear '2018'
|
|
description 'ASP.NET Core SignalR Client for Java applications'
|
|
url 'https://github.com/aspnet/SignalR'
|
|
name groupId + ':' + artifactId
|
|
licenses {
|
|
license {
|
|
name 'The Apache Software License, Version 2.0'
|
|
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
distribution 'repo'
|
|
}
|
|
}
|
|
scm {
|
|
connection 'scm:git:git://github.com/aspnet/SignalR.git'
|
|
developerConnection 'scm:git:git://github.com/aspnet/SignalR.git'
|
|
url 'http://github.com/aspnet/SignalR/tree/master'
|
|
}
|
|
developers {
|
|
developer {
|
|
id 'microsoft'
|
|
name 'Microsoft'
|
|
}
|
|
}
|
|
}
|
|
}.writeTo("${buildDir}/libs/signalr-${project.version}.pom")
|
|
}
|
|
|
|
task createPackage(dependsOn: [jar,sourceJar,javadocJar,generatePOM])
|