forked from gradle/gradle
-
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.
Split PluginRepositoryFactory from Registry
- Loading branch information
Pepper Lebeck-Jobe
committed
May 4, 2016
1 parent
9914479
commit 4439c4f
Showing
21 changed files
with
310 additions
and
173 deletions.
There are no files selected for viewing
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
50 changes: 50 additions & 0 deletions
50
...e/src/main/java/org/gradle/api/internal/plugins/repositories/PluginRepositoryFactory.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,50 @@ | ||
/* | ||
* Copyright 2016 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 | ||
* | ||
* http://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.gradle.api.internal.plugins.repositories; | ||
|
||
import org.gradle.api.Action; | ||
import org.gradle.api.internal.file.FileResolver; | ||
|
||
/** | ||
* Created by pepper on 5/4/16. | ||
*/ | ||
public interface PluginRepositoryFactory { | ||
/** | ||
* Adds and configures a {@link MavenPluginRepository}. | ||
* | ||
* @param action The action to use to configure the repository. | ||
* @param scriptFileResolver The {@link FileResolver} in the context of the Script. | ||
* @return The added repository. | ||
*/ | ||
MavenPluginRepository maven(Action<? super MavenPluginRepository> action, FileResolver scriptFileResolver); | ||
|
||
/** | ||
* Adds and configures a {@link IvyPluginRepository}. | ||
* | ||
* @param action The action to use to configure the repository. | ||
* @param scriptFileResolver The {@link FileResolver} in the context of the Script. | ||
* @return the added repository. | ||
*/ | ||
IvyPluginRepository ivy(Action<? super IvyPluginRepository> action, FileResolver scriptFileResolver); | ||
|
||
/** | ||
* Adds the Gradle Plugin Portal (plugins.gradle.org) as a plugin repository. | ||
* @return The added repository. | ||
* @throws IllegalArgumentException if called more than once. | ||
*/ | ||
GradlePluginPortal gradlePluginPortal(); | ||
} |
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
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
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
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
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
Oops, something went wrong.