Skip to content

Instantly share code, notes, and snippets.

@ldaley
Created August 21, 2013 08:46
Show Gist options
  • Save ldaley/6291907 to your computer and use it in GitHub Desktop.
Save ldaley/6291907 to your computer and use it in GitHub Desktop.
/*
* Copyright 2012 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.publish.plugins;
import org.gradle.api.*;
import org.gradle.api.artifacts.dsl.RepositoryHandler;
import org.gradle.api.internal.artifacts.ArtifactPublicationServices;
import org.gradle.api.internal.tasks.TaskContainerInternal;
import org.gradle.api.publish.PublicationContainer;
import org.gradle.api.publish.PublishingExtension;
import org.gradle.api.publish.internal.DefaultPublicationContainer;
import org.gradle.api.publish.internal.DefaultPublishingExtension;
import org.gradle.api.tasks.TaskContainer;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.model.Closed;
import org.gradle.model.ModelRules;
import org.gradle.model.Open;
import javax.inject.Inject;
/**
* Installs a {@link org.gradle.api.publish.PublishingExtension} with name {@value org.gradle.api.publish.PublishingExtension#NAME}.
*
* @since 1.3
*/
@Incubating
public class PublishingPlugin implements Plugin<Project> {
public static final String PUBLISH_TASK_GROUP = "publishing";
public static final String PUBLISH_LIFECYCLE_TASK_NAME = "publish";
private final Instantiator instantiator;
private final ModelRules modelRules;
private final ArtifactPublicationServices publicationServices;
@Inject
public PublishingPlugin(ArtifactPublicationServices publicationServices, Instantiator instantiator, ModelRules modelRules) {
this.publicationServices = publicationServices;
this.instantiator = instantiator;
this.modelRules = modelRules;
}
public void apply(final Project project) {
RepositoryHandler repositories = publicationServices.createRepositoryHandler();
PublicationContainer publications = instantiator.newInstance(DefaultPublicationContainer.class, instantiator);
// TODO Registering an extension should register it with the model registry as well
PublishingExtension extension = project.getExtensions().create(PublishingExtension.NAME, DefaultPublishingExtension.class, repositories, publications);
modelRules.register(PublishingExtension.NAME, extension);
// This will trigger all the deferred configurables
modelRules.configure(PublishingExtension.NAME, PublishingExtension.class, new Action<PublishingExtension>() {
public void execute(PublishingExtension publishingExtension) {
project.getExtensions().getByType(DefaultPublishingExtension.class);
}
});
modelRules.rule(new Object() {
public void configureExtension(
@Closed(PublishingExtension.NAME) PublishingExtension extension,
@Open(TaskContainerInternal.MODEL_PATH) TaskContainer taskContainer
) {
}
});
Task publishLifecycleTask = project.getTasks().create(PUBLISH_LIFECYCLE_TASK_NAME);
publishLifecycleTask.setDescription("Publishes all publications produced by this project.");
publishLifecycleTask.setGroup(PUBLISH_TASK_GROUP);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment