Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for plexus (4.17 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val objenesis = "org.objenesis:objenesis"
        val plexusCipher = "org.sonatype.plexus:plexus-cipher"
        val plexusInterpolation = "org.codehaus.plexus:plexus-interpolation"
        val plexusSecDispatcher = "org.codehaus.plexus:plexus-sec-dispatcher"
        val plexusClassworlds = "org.codehaus.plexus:plexus-classworlds"
        val plexusUtils = "org.codehaus.plexus:plexus-utils"
        val plist = "com.googlecode.plist:dd-plist"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

                        operator fun String.plus(some: List<Int>): String
                        infix fun Int.plus(some: List<Int>): Int
                    }
                """
            ) {
                assertHasErrors(
                    "Method com.example.Source.plus(java.lang.String,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.Source.plus(int,java.util.List): Breaking Kotlin modifier change.",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!--</module>-->
    
            <!-- Coding -->
            <module name="CovariantEquals"/>
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 16 22:05:16 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  4. .teamcity/mvnw

      echo "  We cannot execute $JAVACMD" >&2
      exit 1
    fi
    
    if [ -z "$JAVA_HOME" ] ; then
      echo "Warning: JAVA_HOME environment variable is not set."
    fi
    
    CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
    
    # traverses directory structure from process work directory to filesystem root
    # first directory with .mvn subdirectory is considered project base directory
    find_maven_basedir() {
    
    Shell Script
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt

            return gson.toJson(subprojects) + '\n'
        }
    
        private
        fun generateSubprojectsDirectories(): List<File> {
            val subprojectRoots = platformsFolder.asFile.listFiles(File::isDirectory).plus(subprojectsFolder.asFile).plus(testingFolder.asFile)
            return subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten()
        }
    
        private
        fun generateSubprojects(): List<GradleSubproject> {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:38 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

            logging.captureStandardError(LogLevel.INFO)
    
            def destDir = destinationDirectory.get().asFile
            fs.delete {
                delete(destDir, temporaryDir)
            }
    
            def xslClasspath = classpath.plus(objects.fileCollection().from(ClasspathUtil.getClasspathForClass(XslTransformer)))
    
            fs.copy {
                from(getStylesheetDirectory()) {
                    include "**/*.xml"
                    include "*.xsl"
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 05 19:36:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  7. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                assertTrue(credentialLeakCondition.stopBuildOnFailure!!)
            }
        }
    
        private fun subProjectFolderList(): List<File> {
            val subprojectRoots = File("../platforms").listFiles(File::isDirectory).plus(File("../subprojects"))
            val subProjectFolders = subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten().filter { dir ->
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  8. architecture/standards/0004-use-a-platform-architecture.md

    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    This platform is agnostic to what kind of software is being developed.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sun Feb 25 22:19:29 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  9. architecture/platforms.md

    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    This platform is agnostic to what kind of software is being developed.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/IntegrationTest.kt

             * a Gradle runner.
             */
            val reorderedClasspath = classpath.filter { file ->
                !file.name.startsWith("kotlin-daemon-client")
            }.plus(classpath.filter { it.name.startsWith("kotlin-daemon-client") })
            super.setClasspath(reorderedClasspath)
        }
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2K bytes
    - Viewed (0)
Back to top