1
0
mirror of synced 2026-01-08 21:05:13 -05:00
Files
airbyte/airbyte-worker-models/build.gradle
Benoit Moriceau 7a71c55c1f Bmoric/remove dep server worker (#17894)
* test [ci skip]

* Autogenerated files

* Add missing annotation

* Remove unused json2Schema block from worker

* Move tess

* Missing deps and format

* Fix test build

* TMP

* Add missing dependencies

* PR comments

* Tmp

* [ci skip] Tmp

* Fix acceptance test and add the seed dependency

* Fix build

* For diff

* tmp

* Build pass

* make the worker to be  on the platform only

* fix setting.yaml

* Fix pmd

* Fix Cron

* Add chart

* Fix cron

* Fix server build.gradle

* Fix jar conflict

* PR comments

* Add cron micronaut environemnt
2022-10-17 12:35:04 -07:00

23 lines
619 B
Groovy

import org.jsonschema2pojo.SourceType
plugins {
id "java-library"
id 'com.github.eirnym.js2p' version '1.0'
}
jsonSchema2Pojo {
sourceType = SourceType.YAMLSCHEMA
source = files("${sourceSets.main.output.resourcesDir}/workers_models")
targetDirectory = new File(project.buildDir, 'generated/src/gen/java/')
removeOldOutput = true
targetPackage = 'io.airbyte.persistence.job.models'
useLongIntegers = true
generateBuilders = true
includeConstructors = false
includeSetters = true
}
Task publishArtifactsTask = getPublishArtifactsTask("$rootProject.ext.version", project)