Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for sourcesJar (0.13 sec)

  1. 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)
  2. 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)
  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. .github/workflows/maven.yml

          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Build with Maven
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 822 bytes
    - Viewed (0)
  5. .github/workflows/maven.yml

            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml
        - name: Run Fess
          run: bash src/test/resources/before_script.sh
        - name: Run Integration Test
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. .github/workflows/maven.yml

          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Build with Maven
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Fri Nov 17 21:30:22 UTC 2023
    - 822 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultDependenciesAccessors.java

            }
    
        }
    
        private static class GeneratedAccessors {
            private final File sourcesDir;
            private final File classesDir;
    
            private GeneratedAccessors(File sourcesDir, File classesDir) {
                this.sourcesDir = sourcesDir;
                this.classesDir = classesDir;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top