Skip to content

Commit 6160336

Browse files
committed
Apply ArtifactoryPlugin to SpringRootProjectPlugin
Closes gh-1177
1 parent 7aee468 commit 6160336

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

buildSrc/src/main/java/io/spring/gradle/convention/SpringRootProjectPlugin.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
2020
import org.gradle.api.Project;
2121
import org.gradle.api.plugins.BasePlugin;
2222
import org.gradle.api.plugins.PluginManager;
23+
import org.jfrog.gradle.plugin.artifactory.ArtifactoryPlugin;
2324

2425
import org.springframework.gradle.classpath.SpringCheckProhibitedDependenciesLifecyclePlugin;
2526
import org.springframework.gradle.maven.SpringNexusPlugin;
@@ -38,6 +39,7 @@ public void apply(Project project) {
3839
pluginManager.apply(SpringNoHttpPlugin.class);
3940
pluginManager.apply(SpringNexusPlugin.class);
4041
pluginManager.apply(SpringCheckProhibitedDependenciesLifecyclePlugin.class);
42+
pluginManager.apply(ArtifactoryPlugin.class);
4143
pluginManager.apply(SpringSonarQubePlugin.class);
4244

4345
// Apply default repositories

0 commit comments

Comments
 (0)