Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for publishEar (0.19 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishEarIntegTest.groovy

    class MavenPublishEarIntegTest extends AbstractMavenPublishIntegTest {
        void "can publish ear module"() {
            def earModule = mavenRepo.module("org.gradle.test", "publishEar", "1.9")
    
            given:
            settingsFile << "rootProject.name = 'publishEar' "
    
            and:
            buildFile << """
    apply plugin: 'ear'
    apply plugin: 'war'
    apply plugin: 'maven-publish'
    
    group = 'org.gradle.test'
    version = '1.9'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishEarIntegTest.groovy

    class IvyPublishEarIntegTest extends AbstractIvyPublishIntegTest {
        void "can publish EAR only for mixed java and WAR and EAR project"() {
            given:
            file("settings.gradle") << "rootProject.name = 'publishEar' "
    
            and:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'war'
                apply plugin: 'ear'
                apply plugin: 'ivy-publish'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. pkg/controller/certificates/rootcacertpublisher/publisher.go

    	queue workqueue.TypedRateLimitingInterface[string]
    }
    
    // Run starts process
    func (c *Publisher) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting root CA cert publisher controller")
    	defer logger.Info("Shutting down root CA cert publisher controller")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. samples/bookinfo/src/details/details.rb

        end
    
        return {
            'id' => id,
            'author': 'William Shakespeare',
            'year': 1595,
            'type' => 'paperback',
            'pages' => 200,
            'publisher' => 'PublisherA',
            'language' => 'English',
            'ISBN-10' => '1234567890',
            'ISBN-13' => '123-1234567890'
        }
    end
    
    def fetch_details_from_external_service(isbn, id, headers)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. internal/s3select/sql/jsondata/books.json

            {
                "year": 1934,
                "publisher": "Collins Crime Club (London)",
                "type": "Hardcover",
                "pages": 256
            },
            {
                "year": 1934,
                "publisher": "Dodd Mead and Company (New York)",
                "type": "Hardcover",
                "pages": 302
            },
            {
                "year": 2011,
                "publisher": "Harper Collins",
                "type": "Paperback",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/IvyServices.java

    import org.gradle.api.publish.ivy.internal.publisher.ContextualizingIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.DependencyResolverIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.IvyDuplicatePublicationTracker;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.ValidatingIvyPublisher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven.internal.publisher
    
    import org.codehaus.plexus.util.xml.pull.XmlPullParserException
    import org.gradle.api.Action
    import org.gradle.api.XmlProvider
    import org.gradle.api.internal.artifacts.repositories.DefaultMavenArtifactRepository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

                .publishAs("some", "artifact", pluginVersion, pluginPortal, executer)
                .allowAll()
            String secondPluginId = 'com.acme.greeter2'
            new PluginBuilder(file("greeter-second"))
                .addPluginWithPrintlnTask('greet2', 'Hello from second plugin!', secondPluginId, "SecondPlugin")
                .publishAs("some", "artifact2", pluginVersion, pluginPortal, executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/DependencyResolverIvyPublisher.java

                publish(publisher, artifact, artifactMetadata);
            }
        }
    
        private void publish(IvyResolver publisher, IvyArtifact artifact, ModuleComponentArtifactMetadata artifactMetadata) {
            networkOperationBackOffAndRetry.withBackoffAndRetry(new Callable<Void>() {
                @Override
                public Void call() {
                    publisher.publish(artifactMetadata, artifact.getFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 04:09:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy.internal.publisher
    
    import org.gradle.api.Action
    import org.gradle.api.XmlProvider
    import org.gradle.api.artifacts.repositories.IvyArtifactRepository
    import org.gradle.api.internal.artifacts.DefaultImmutableModuleIdentifierFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top