Skip to content

Creating a new module

cramsan edited this page Aug 10, 2024 · 2 revisions

In order to achieve our goal of enabling sustainable growth, this project makes heavy use of several local plugins. You can learn more about each one of them by going to the gradle folder.

You can create a new module by following the examples in the samples folder. Each module is created by having a folder with a build.gradle.kts file. This file will apply the necessary plugins and configure the module. You can apply some of our existing plugins to ensure your module is created correctly and with safe-defaults. The goal is that as we continue to evolve our modules, learnings and best-practices can be formalized in our modules.

Once you have your module created, you can add it to the settings.gradle.kts file in the root of the project. This will ensure that the module is included in the build process. Finally to enable your module as part of the build process, you will need to add it to the build.gradle.kts file in the root of the project.

Clone this wiki locally