Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for mavenHome (0.43 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomContributor.java

    import org.gradle.api.provider.MapProperty;
    import org.gradle.api.provider.Property;
    import org.gradle.api.provider.SetProperty;
    
    /**
     * A contributor of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomContributorSpec
     */
    public interface MavenPomContributor {
    
        /**
         * The name of this contributor.
         */
        Property<String> getName();
    
        /**
         * The email
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomDeveloperSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.Action;
    
    /**
     * Allows to add developers to a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomDeveloper
     */
    public interface MavenPomDeveloperSpec {
    
        /**
         * Creates, configures and adds a developer to the publication.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 998 bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomRelocation.java

    import org.gradle.api.provider.Property;
    
    /**
     * The relocation information of a Maven publication that has been moved
     * to a new group and/or artifact ID.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomDistributionManagement
     */
    public interface MavenPomRelocation {
    
        /**
         * The new group ID of the artifact.
         */
        Property<String> getGroupId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

            "spring dependency management plugin" | false               | "selected by rule" | "selected by rule" | "selected by rule" | "dependencyManagement { imports { mavenBom $bom } }"  | "id 'io.spring.dependency-management' version '${AbstractSmokeTest.Test...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomLicense.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.provider.Property;
    
    /**
     * A license of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomLicenseSpec
     */
    public interface MavenPomLicense {
    
        /**
         * The name of this license.
         */
        Property<String> getName();
    
        /**
         * The URL of this license.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            metadataSources {
                mavenPom()
                artifact()
            }
        }
    }
    // end::maven-repo-with-metadata-sources[]
    
    // tag::maven-repo-with-ignore-gradle-metadata-redirection[]
    repositories {
        maven {
            url "http://repo.mycompany.com/repo"
            metadataSources {
                mavenPom()
                artifact()
                ignoreGradleMetadataRedirection()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.provider.Property;
    import org.gradle.api.provider.SetProperty;
    
    /**
     * A mailing list of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomMailingListSpec
     */
    public interface MavenPomMailingList {
    
        /**
         * The name of this mailing list.
         */
        Property<String> getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomOrganization.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.provider.Property;
    
    /**
     * The organization of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     */
    public interface MavenPomOrganization {
    
        /**
         * The name of this organization.
         */
        Property<String> getName();
    
        /**
         * The URL of this organization.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 999 bytes
    - Viewed (0)
  9. apache-maven/src/assembly/shared/init

    CLASSWORLDS_CONF="$MAVEN_HOME/bin/m2.conf"
    
    # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched
    if $cygwin || $mingw ; then
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
    fi
    
    if [ -n "$JAVA_HOME" ] ; then
      if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
      else
        JAVACMD="$JAVA_HOME/bin/java"
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/shared/init.cmd

    @REM ==== END VALIDATION ====
    
    :init
    
    set "CLASSWORLDS_CONF=%MAVEN_HOME%\bin\m2.conf"
    
    @REM Find the project basedir, i.e., the directory that contains the directory ".mvn".
    @REM Fallback to current working directory if not found.
    
    set "EXEC_DIR=%CD%"
    set "WDIR=%EXEC_DIR%"
    
    @REM Look for the --file switch and start the search for the .mvn directory from the specified
    @REM POM location, if supplied.
    
    set FILE_ARG=
    :arg_loop
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top