generator.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ignore_platforms = true
  2. [root]
  3. template="settings.gradle.kts.jinja"
  4. copy=[
  5. "build.gradle.kts",
  6. "gradlew",
  7. "gradlew.bat",
  8. "gradle/wrapper/gradle-wrapper.jar",
  9. "gradle/wrapper/gradle-wrapper.properties"
  10. ]
  11. [targets.jar]
  12. template="build.gradle.kts.jinja"
  13. [targets.jar_proto]
  14. template={ path="build.gradle.kts.proto.jinja", dest="build.gradle.kts" }
  15. [attrs.target]
  16. required_jdk="str"
  17. add_vcs_info_to_mf="bool"
  18. junit4_test="flag"
  19. junit5_test="flag"
  20. app_main_class="str"
  21. enable_preview="flag"
  22. annotation_processors="list"
  23. publish="flag"
  24. publish_group="str"
  25. publish_version="str"
  26. proto_files="list"
  27. proto_namespace="str"
  28. proto_compiler_version="str"
  29. proto_runtime_version="str"
  30. proto_common_version="str"
  31. proto_grpc="flag"
  32. proto_grpc_version="str"
  33. kotlin_version="str"
  34. with_kotlin="flag"
  35. with_kotlinc_plugin_allopen="flag"
  36. with_kotlinc_plugin_lombok="flag"
  37. with_kotlinc_plugin_noarg="flag"
  38. with_kotlinc_plugin_serialization="flag"
  39. [attrs.root]
  40. [attrs.dir]
  41. [attrs.induced]
  42. consumer-classpath="str"
  43. consumer-jar="str"
  44. consumer-type="str"
  45. consumer-prebuilt="flag"
  46. [merge]
  47. test=[
  48. "/ut",
  49. "/src/test",
  50. "/src/test/java",
  51. "/src/test-integration"
  52. ]