1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * Copyright 2016-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * https://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- package io.spring.gradle.convention;
- import org.gradle.api.Project
- import org.gradle.api.plugins.JavaLibraryPlugin;
- import org.gradle.api.plugins.MavenPlugin;
- import org.gradle.api.plugins.PluginManager
- import org.springframework.gradle.classpath.CheckClasspathForProhibitedDependenciesPlugin;
- import org.springframework.gradle.maven.SpringMavenPlugin;
- /**
- * @author Rob Winch
- */
- class SpringModulePlugin extends AbstractSpringJavaPlugin {
- @Override
- void additionalPlugins(Project project) {
- PluginManager pluginManager = project.getPluginManager();
- pluginManager.apply(JavaLibraryPlugin.class)
- pluginManager.apply(SpringMavenPlugin.class);
- pluginManager.apply(CheckClasspathForProhibitedDependenciesPlugin.class);
- pluginManager.apply("io.spring.convention.jacoco");
- def deployArtifacts = project.task("deployArtifacts")
- deployArtifacts.group = 'Deploy tasks'
- deployArtifacts.description = "Deploys the artifacts to either Artifactory or Maven Central"
- if (!Utils.isRelease(project)) {
- deployArtifacts.dependsOn project.tasks.artifactoryPublish
- }
- }
- }
|