Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readEntryPoints (0.16 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

        /**
         * The output Jar file.
         */
        @get:OutputFile
        abstract val jarFile: RegularFileProperty
    
        @TaskAction
        fun shade() {
            val entryPoints = readEntryPoints()
            val classTrees = buildClassTrees(readClassTrees())
    
            val classesToInclude = mutableSetOf<String>()
    
            val queue: Queue<String> = ArrayDeque()
            queue.addAll(entryPoints)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top