forked from spring-projects/spring-pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Build] Add abstract base plugin for module and docs plugins
- Loading branch information
Showing
4 changed files
with
74 additions
and
51 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
buildSrc/src/main/java/org/springframework/pulsar/gradle/AbstractSpringModulePlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright 2022-2022 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 org.springframework.pulsar.gradle; | ||
|
||
import org.gradle.api.Plugin; | ||
import org.gradle.api.Project; | ||
import org.gradle.api.plugins.JavaLibraryPlugin; | ||
import org.gradle.api.plugins.JavaPlugin; | ||
import org.gradle.api.plugins.PluginManager; | ||
|
||
import org.springframework.pulsar.gradle.optional.OptionalDependenciesPlugin; | ||
import org.springframework.pulsar.gradle.publish.SpringMavenPlugin; | ||
|
||
import io.spring.gradle.convention.RepositoryConventionPlugin; | ||
|
||
/** | ||
* @author Chris Bono | ||
*/ | ||
public abstract class AbstractSpringModulePlugin implements Plugin<Project> { | ||
|
||
@Override | ||
public void apply(final Project project) { | ||
PluginManager pluginManager = project.getPluginManager(); | ||
pluginManager.apply(JavaPlugin.class); | ||
pluginManager.apply(JavaLibraryPlugin.class); | ||
pluginManager.apply(RepositoryConventionPlugin.class); | ||
pluginManager.apply(SpringMavenPlugin.class); | ||
pluginManager.apply(JavaConventionsPlugin.class); | ||
pluginManager.apply(OptionalDependenciesPlugin.class); | ||
additionalPlugins(project); | ||
} | ||
|
||
protected abstract void additionalPlugins(Project project); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
buildSrc/src/main/java/org/springframework/pulsar/gradle/publish/SpringMavenPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.springframework.pulsar.gradle.publish; | ||
|
||
import org.gradle.api.Plugin; | ||
import org.gradle.api.Project; | ||
import org.gradle.api.plugins.PluginManager; | ||
import org.gradle.api.publish.maven.plugins.MavenPublishPlugin; | ||
|
||
import io.spring.gradle.convention.ArtifactoryPlugin; | ||
|
||
public class SpringMavenPlugin implements Plugin<Project> { | ||
@Override | ||
public void apply(Project project) { | ||
PluginManager pluginManager = project.getPluginManager(); | ||
pluginManager.apply(MavenPublishPlugin.class); | ||
pluginManager.apply(SpringSigningPlugin.class); | ||
pluginManager.apply(MavenPublishingConventionsPlugin.class); | ||
pluginManager.apply(PublishLocalPlugin.class); | ||
pluginManager.apply(PublishArtifactsPlugin.class); | ||
pluginManager.apply(ArtifactoryPlugin.class); | ||
} | ||
} |