Files
SCM-Manager/build-plugins/build.gradle

84 lines
2.6 KiB
Groovy
Raw Normal View History

2020-12-21 15:22:24 +01:00
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
plugins {
id 'java-gradle-plugin'
id 'groovy'
}
apply from: file( '../gradle/dependencies.gradle' )
2020-12-21 15:22:24 +01:00
dependencies {
implementation gradleApi()
implementation 'com.github.node-gradle:gradle-node-plugin:2.2.4'
2021-01-06 17:34:24 +01:00
implementation 'gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.15.0'
implementation libraries.guava
implementation libraries.jettyServer
implementation libraries.jettyWebapp
implementation libraries.jettyClient
2021-01-05 16:21:47 +01:00
implementation libraries.snakeYml
2020-12-21 15:22:24 +01:00
}
gradlePlugin {
// Define the plugin
plugins {
javaModule {
id = 'org.scm-manager.java'
implementationClass = 'com.cloudogu.scm.JavaModulePlugin'
}
buildInfo {
id = 'org.scm-manager.build-info'
implementationClass = 'com.cloudogu.scm.BuildInfoPlugin'
}
2020-12-21 15:22:24 +01:00
corePlugins {
id = 'org.scm-manager.core-plugins'
implementationClass = 'com.cloudogu.scm.CorePluginsGradlePlugin'
}
serve {
id = 'org.scm-manager.serve'
implementationClass = 'com.cloudogu.scm.ServePlugin'
}
2020-12-23 16:33:35 +01:00
integrationTest {
id = 'org.scm-manager.integration-tests'
implementationClass = 'com.cloudogu.scm.IntegrationTestPlugin'
}
packaging {
id = 'org.scm-manager.packaging'
implementationClass = 'com.cloudogu.scm.PackagingPlugin'
}
2020-12-21 15:22:24 +01:00
}
}
repositories {
maven {
url "https://packages.scm-manager.org/repository/public/"
}
maven {
url 'https://plugins.gradle.org/m2/'
}
2020-12-21 15:22:24 +01:00
}