generator.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. use_managed_peers_closure = true
  2. ignore_platforms = true
  3. [root]
  4. template="settings.gradle.kts.jinja"
  5. copy=[
  6. "gradlew",
  7. "gradlew.bat",
  8. "gradle/wrapper/gradle-wrapper.jar",
  9. "gradle/wrapper/gradle-wrapper.properties",
  10. ]
  11. [targets.EXTRA_ONLY]
  12. template="build.gradle.kts.jinja"
  13. [targets.jar]
  14. template="build.gradle.kts.jinja"
  15. [targets.jar_proto]
  16. template={ path="build.gradle.kts.proto.jinja", dest="build.gradle.kts" }
  17. [attrs.target]
  18. # DEPRECATED
  19. annotation_processors="list"
  20. required_jdk="str"
  21. add_vcs_info_to_mf="bool"
  22. junit4_test="flag"
  23. junit5_test="flag"
  24. app_main_class="str"
  25. jar_source_set="list"
  26. enable_preview="flag"
  27. use_annotation_processor="list"
  28. use_errorprone="flag"
  29. jdk_version="str"
  30. jdk_path="str"
  31. publish="flag"
  32. publish_group="str"
  33. publish_version="str"
  34. proto_files="list"
  35. proto_namespace="str"
  36. proto_compiler_version="str"
  37. proto_runtime_version="str"
  38. proto_common_version="str"
  39. proto_grpc="flag"
  40. proto_grpc_version="str"
  41. proto_kotlin_grpc="flag"
  42. proto_kotlin_grpc_version="str"
  43. kotlin_version="str"
  44. with_kotlin="flag"
  45. with_kotlinc_plugin_allopen="set"
  46. with_kotlinc_plugin_lombok="set"
  47. with_kotlinc_plugin_noarg="set"
  48. with_kotlinc_plugin_serialization="set"
  49. runs="list"
  50. runs-args="list"
  51. runs-classpath="list"
  52. runs-cwd="str"
  53. runs-in="list"
  54. runs-in_dir="list"
  55. runs-in_dirs_inputs="list"
  56. runs-in_noparse="list"
  57. runs-out="list"
  58. runs-out_dir="list"
  59. runs-tool="list"
  60. javac-flags="list"
  61. [attrs.root]
  62. [attrs.dir]
  63. [attrs.induced]
  64. consumer-classpath="str"
  65. consumer-jar="str"
  66. consumer-type="str"
  67. consumer-prebuilt="flag"
  68. [merge]
  69. test=[
  70. "/ut",
  71. "/src/test",
  72. "/src/test/java",
  73. "/src/test-integration",
  74. "/src/testFixtures",
  75. "/src/intTest",
  76. ]