Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for sourceJar (0.16 sec)

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

         * plugins {
         *     id 'maven-publish'
         * }
         *
         * task sourceJar(type: Jar) {
         *   archiveClassifier = "sources"
         * }
         *
         * publishing {
         *   publications {
         *     maven(MavenPublication) {
         *       artifact sourceJar // Publish the output of the sourceJar task
         *       artifact 'my-file-name.jar' // Publish a file created outside of the build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
                            def javadocJar = this.project(":child1").tasks.getByName("javadocJar")
                            dep.buildDependencies(sourceJar, javadocJar)
                            dep.publicationSourcePath = cp.fileReference(sourceJar.archiveFile.get().asFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * }
         *
         * task sourceJar(type: Jar) {
         *   archiveClassifier = "source"
         * }
         *
         * task genDocs {
         *   doLast {
         *     // Generate 'my-docs-file.htm'
         *   }
         * }
         *
         * publishing {
         *   publications {
         *     ivy(IvyPublication) {
         *       artifact sourceJar // Publish the output of the sourceJar task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                task sourceJar(type: Jar) {
                    from sourceSets.main.allJava
                }
    
                publishing {
                    publications {
                        mavenJava(MavenPublication) {
                            from components.java
                            artifactId '$artifactId'
                            artifact sourceJar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            if (!destDir.mkdir()) {
                throw new IOException("Could not create root unzip directory " + destDir);
            }
    
            try (JarFile sourceJar = new JarFile(sourceJarPath)) {
                for (JarEntry sourceJarEntry : Collections.list(sourceJar.entries())) {
                    File currFile = new File(destDir, sourceJarEntry.getName());
                    if (sourceJarEntry.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginPublishingIntegrationTest.groovy

            and:
            buildFile << """
    
                task sourceJar(type: Jar) {
                    archiveClassifier = "sources"
                    from sourceSets.main.allSource
                }
    
                publishing {
                    publications {
                        pluginMaven(MavenPublication) {
                            artifact sourceJar
                        }
                        pluginIvy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 13:07:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                $dependencies
    
                task sourceJar(type: Jar) {
                    from sourceSets.main.allJava
                    archiveBaseName = "publishTest-source"
                }
    
                publishing {
                    publications {
                        ivy(IvyPublication) {
                            from components.java
                            artifact(sourceJar) {
                                classifier "source"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            createBuildScripts("""
                task sourceJar(type: Jar) {
                    from sourceSets.main.allJava
                    archiveClassifier = "source"
                }
    
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from components.java
                            artifact sourceJar
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

            }
            if (updatedBy != null) {
                addFieldToSource(sourceMap, "updatedBy", updatedBy);
            }
            if (updatedTime != null) {
                addFieldToSource(sourceMap, "updatedTime", updatedTime);
            }
            if (username != null) {
                addFieldToSource(sourceMap, "username", username);
            }
            return sourceMap;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsPathMapping.java

                addFieldToSource(sourceMap, "updatedTime", updatedTime);
            }
            if (userAgent != null) {
                addFieldToSource(sourceMap, "userAgent", userAgent);
            }
            return sourceMap;
        }
    
        protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) {
            sourceMap.put(field, value);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top