Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/docs/getting_started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ plugins {
}
```

You can see the two Viaduct plugins appearing here. Viaduct applications are structured as multi-project Gradle builds. The root project must contain the _application_ plugin shown above: this plugin coordinates certain build processes across the engine application. In addition, one or more projects also apply the _module_ plugin, which indicates that that project contains application code (in our case, the code found in `HelloWorldResolvers.kt`). As this example shows, a Viaduct application can be as simple as a single project build, in which case both plugins are applied to taht one project.
You can see the two Viaduct plugins appearing here. Viaduct applications are structured as multi-project Gradle builds. The root project must contain the _application_ plugin shown above: this plugin coordinates certain build processes across the engine application. In addition, one or more projects also apply the _module_ plugin, which indicates that that project contains application code (in our case, the code found in `HelloWorldResolvers.kt`). As this example shows, a Viaduct application can be as simple as a single project build, in which case both plugins are applied to that one project.

## Extending the Application

Expand Down