Newer
Older
import groovy.json.JsonOutput
import cz.habarta.typescript.generator.Settings.ConfiguredExtension
Adam Laskowski
committed
evaluationDependsOn(':lib-commonbase')
Adam Laskowski
committed
evaluationDependsOn(':lib-common')
evaluationDependsOn(':lib-typescriptprocessor')
Adam Laskowski
committed
apply from: '../build/javaproject.gradle'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "cz.habarta.typescript-generator:typescript-generator-gradle-plugin-publisher:3.2.1263"
}
}
task('generateModuleNames') {
doLast {
def file = fileTree(dir: '../api-openbis-javascript/src/v3', include: ['as/**/*.js', 'ds/**/*.js', 'openbis.js'])
def modules = file.collect { File f ->
def name = f.name
def moduleName = name.substring(0, name.lastIndexOf('.'))
return "${moduleName}"
def names = [names: modules]
def json = JsonOutput.prettyPrint(JsonOutput.toJson(names))
def moduleNamesFile = new File('../api-openbis-javascript/src/v3/moduleNames.json')
moduleNamesFile.write(json)
dependencies {
api project(':lib-common'), project(":lib-typescriptprocessor"),
Adam Laskowski
committed
'sis:sis-file-transfer:19.03.1',
'fasterxml:jackson-core:2.9.10',
'fasterxml:jackson-annotations:2.9.10',
"cz.habarta.typescript-generator:typescript-generator-core:3.2.1263"
api "cz.habarta.typescript-generator:typescript-generator-core:3.2.1263"
api 'org.bsc.processor:java2ts-processor:1.3.1'
Adam Laskowski
committed
testImplementation project(path: ':lib-commonbase', configuration: 'tests'),
Adam Laskowski
committed
project(path: ':lib-common', configuration: 'tests'),
Adam Laskowski
committed
'fjelmer:classycle:1.4.2',
'testng:testng:6.8-CISD',
'reflections:reflections:0.9.10'
api(project(":lib-typescriptprocessor"))
}
apply plugin: "cz.habarta.typescript-generator"
generateTypeScript {
jsonLibrary = 'jackson2'
classPatterns = [
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.sample.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.experiment.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.property.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.dataset.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.project.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.person.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.vocabulary.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.material.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.space.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.common.**',
// 'ch.ethz.sis.openbis.generic.asapi.v3.dto.common.search.**',
// 'ch.ethz.sis.openbis.generic.OpenBIS',
'ch.ethz.sis.openbis.generic.asapi.v3.dto.dataset.archive.ArchiveDataSetsOperation'
excludeClassPatterns = ["**.v1.**",
"**.generic.shared.**",
"ch.ethz.sis.openbis.generic.asapi.v3.dto.session.search.PersonalAccessTokenSessionNameSearchCriteria",
"ch.ethz.sis.openbis.generic.asapi.v3.dto.dataset.search.ExternalDmsSearchCriteria",
"ch.ethz.sis.openbis.generic.asapi.v3.dto.externaldms.search.ExternalDmsSearchCriteria"]
outputKind = 'module'
outputFileType = 'declarationFile'
customTypeNaming = ["ch.ethz.sis.openbis.generic.asapi.v3.dto.externaldms.search.ExternalDmsSearchCriteria:ExternalDmsSearchCriteria", "ch.ethz.sis.openbis.generic.asapi.v3.dto.dataset.search.ExternalDmsSearchCriteria:DSExternalDmsSearchCriteria"]
extensionsWithConfiguration = [ new ConfiguredExtension(className:'ch.empa.tsprocessor.MethodExtension', configuration: ['asyncClasses':"[\"ch.ethz.sis.openbis.generic.OpenBIS\"]"])]
jackson2ModuleDiscovery = true
outputFile = file('../api-openbis-javascript/src/v3/openbis.d.ts')