Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ivyWeb (0.08 sec)

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

                publishing {
                    repositories {
                        ivy {
                            url '${ivyRepo.uri}'
                        }
                    }
                    publications {
                        ivyWeb(IvyPublication) {
                            from components.web
                        }
                    }
                }
            """
    
            when:
            run "publish"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
    		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
    		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
    
    		<description homepage="http://www.my.org/mymodule/">
    	This module is <b>great</b> !<br/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

        Repository repoA
        Repository repoB
    
        private def publishPlugins(String repoType) {
            if (repoType == IVY) {
                repoA = ivyRepo("ivyA")
                repoB = ivyRepo("ivyB")
    
                publishPlugin(pluginA, repoA)
                publishPlugin(pluginAB, repoA)
                publishPlugin(pluginAB, repoB)
            } else if (repoType == MAVEN) {
                repoA = mavenRepo("repoA")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top