mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-24 23:59:44 +01:00
10 lines
334 B
Groovy
10 lines
334 B
Groovy
|
plugins {
|
||
|
// Support convention plugins written in Groovy. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build.
|
||
|
id 'groovy-gradle-plugin'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
// Use the plugin portal to apply community plugins in convention plugins.
|
||
|
gradlePluginPortal()
|
||
|
}
|