Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 480 for sublist (0.22 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

    """)
            when:
            fails 'publish'
    
            then:
            failure.assertHasDescription("Execution failed for task ':publishIvyPublicationToIvyRepository'.")
            failure.assertHasCause("Failed to publish publication 'ivy' to repository 'ivy'")
            failure.assertHasCause("Invalid publication 'ivy': artifact file is a directory")
        }
    
        def "cannot publish when artifact does not exist"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

            given:
            ivyRepo.module('d').publish()
            ivyRepo.module('b').dependsOn('d').publish()
            ivyRepo.module('e').publish()
            ivyRepo.module('c').dependsOn('e').publish()
            IvyModule moduleA = ivyRepo.module('a').dependsOn('b').dependsOn('c')
            addExcludeRuleToModuleDependency(moduleA, 'b', excludeAttributes)
            moduleA.publish()
    
            when:
            succeedsDependencyResolution()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

    import org.gradle.api.publish.maven.internal.publication.MavenPublicationInternal;
    import org.gradle.api.publish.maven.tasks.GenerateMavenPom;
    import org.gradle.api.publish.maven.tasks.PublishToMavenLocal;
    import org.gradle.api.publish.maven.tasks.PublishToMavenRepository;
    import org.gradle.api.publish.plugins.PublishingPlugin;
    import org.gradle.api.publish.tasks.GenerateModuleMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            given:
            mavenRepo.module("org", "leaf1").publish()
            mavenRepo.module("org", "leaf2").publish()
            mavenRepo.module("org", "leaf3").publish()
            mavenRepo.module("org", "leaf4").publish()
    
            mavenRepo.module("org", "middle1").dependsOnModules('leaf1', 'leaf2').publish()
            mavenRepo.module("org", "middle2").dependsOnModules('leaf3', 'leaf4').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven
    
    import org.gradle.integtests.fixtures.publish.maven.AbstractMavenPublishIntegTest
    import org.gradle.internal.os.OperatingSystem
    import spock.lang.Issue
    
    class MavenPublishArtifactCustomizationIntegTest extends AbstractMavenPublishIntegTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    }
                }.publish()
            def depB = mavenHttpRepo.module('org.test', 'depB', '1.0').dependsOn([exclusions: [[module: 'excluded']]], depC).publish()
            def depF = mavenHttpRepo.module('org.test', 'depF', '1.0').dependsOn(depC).publish()
            def depE = mavenHttpRepo.module('org.test', 'depE', '1.0').dependsOn(depF).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

        }
    
        def "can publish java-library with dependencies"() {
            given:
            javaLibrary(mavenRepo.module("org.test", "foo", "1.0")).withModuleMetadata().publish()
            javaLibrary(mavenRepo.module("org.test", "bar", "1.0")).withModuleMetadata().publish()
            javaLibrary(mavenRepo.module("org.test", "baz", "1.0+10")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven
    
    import org.gradle.api.credentials.Credentials
    import org.gradle.api.credentials.PasswordCredentials
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.publish.maven.AbstractMavenPublishIntegTest
    import org.gradle.internal.credentials.DefaultPasswordCredentials
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

     * limitations under the License.
     */
    
    
    package org.gradle.api.publish.ivy
    
    import spock.lang.Issue
    
    class IvyPublishBasicIntegTest extends AbstractIvyPublishIntegTest {
    
        def "publishes nothing without defined publication"() {
            given:
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: 'ivy-publish'
    
                group = 'group'
                version = '1.0'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                            from comp
                        }
                    }
                }
            """
    
            when:
            fails 'publish'
    
            then:
            failure.assertHasCause """Invalid publication 'ivy':
      - This publication must publish at least one variant"""
        }
    
        def "fails to generate Gradle metadata if 2 variants have the same attributes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
Back to top