Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for collectSources (0.34 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

                    }
    
                    task collectJavadoc(type: Copy) {
                        from configurations.javadoc
                        into "$buildDir/javadocs"
                    }
                    task collectSources(type: Copy) {
                        from configurations.sources
                        into "$buildDir/sources"
                    }
                ''')
                src {
                    main {
                        java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            if (displayName != null) {
                formatter.node("display name: " + displayName);
            }
            List<Object> paths = new ArrayList<>();
            value.collectSource(paths);
            if (!paths.isEmpty()) {
                formatter.node("contents");
                formatter.startChildren();
                for (Object path : paths) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top