All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.apidsl.ArtifactHandler Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2009 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.artifacts.dsl;

import groovy.lang.Closure;
import org.gradle.api.Action;
import org.gradle.api.artifacts.ConfigurablePublishArtifact;
import org.gradle.api.artifacts.PublishArtifact;

/**
 * This class is for defining artifacts to be published and adding them to configurations. Creating publish artifacts
 * does not mean to create an archive. What is created is a domain object which represents a file to be published
 * and information on how it should be published (e.g. the name).
 *
 * 

To create an publish artifact and assign it to a configuration you can use the following syntax:

* * <configurationName> <artifact-notation>, <artifact-notation> ... * * or * * <configurationName> <artifact-notation> { ... some code to configure the artifact } * *

The notation can be one of the following types:

* *
    * *
  • {@link PublishArtifact}.
  • * *
  • {@link org.gradle.api.tasks.bundling.AbstractArchiveTask}. The information for publishing the artifact is extracted from the archive task (e.g. name, extension, ...). The task will be executed if the artifact is required.
  • * *
  • A {@link org.gradle.api.file.RegularFile} or {@link org.gradle.api.file.Directory}.
  • * *
  • A {@link org.gradle.api.provider.Provider} of {@link java.io.File}, {@link org.gradle.api.file.RegularFile} or {@link org.gradle.api.file.Directory}. The information for publishing the artifact is extracted from the file or directory name. When the provider represents an output of a particular task, that task will be executed if the artifact is required.
  • * *
  • {@link java.io.File}. The information for publishing the artifact is extracted from the file name.
  • * *
  • {@link java.util.Map}. The map should contain a 'file' key. This is converted to an artifact as described above. You can also specify other properties of the artifact using entries in the map. *
  • * *
* *

In each case, a {@link ConfigurablePublishArtifact} instance is created for the artifact, to allow artifact properties to be configured. You can also override the default values for artifact properties by using a closure to configure the properties of the artifact instance

* *

Examples

*

An example showing how to associate an archive task with a configuration via the artifact handler. * This way the archive can be published or referred in other projects via the configuration. *

 * configurations {
 *   //declaring new configuration that will be used to associate with artifacts
 *   schema
 * }
 *
 * task schemaJar(type: Jar) {
 *   //some imaginary task that creates a jar artifact with some schema
 * }
 *
 * //associating the task that produces the artifact with the configuration
 * artifacts {
 *   //configuration name and the task:
 *   schema schemaJar
 * }
 * 
*/ public interface ArtifactHandler { /** * Adds an artifact to the given configuration. * * @param configurationName The name of the configuration. * @param artifactNotation The artifact notation, in one of the notations described above. * @return The artifact. */ PublishArtifact add(String configurationName, Object artifactNotation); /** * Adds an artifact to the given configuration. * * @param configurationName The name of the configuration. * @param artifactNotation The artifact notation, in one of the notations described above. * @param configureClosure The closure to execute to configure the artifact. * @return The artifact. */ PublishArtifact add(String configurationName, Object artifactNotation, Closure configureClosure); /** * Adds an artifact to the given configuration. * * @param configurationName The name of the configuration. * @param artifactNotation The artifact notation, in one of the notations described above. * @param configureAction The action to execute to configure the artifact. * @return The artifact. * * @since 3.3. */ PublishArtifact add(String configurationName, Object artifactNotation, Action configureAction); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy