Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for pomFile (0.04 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        tasks.register("compileAll") {
            description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc."
            val compileTasks = project.tasks.matching {
                it is JavaCompile || it is GroovyCompile
            }
            dependsOn(compileTasks)
        }
    
        tasks.register("compileAllProduction") {
            description = "Compile all production source code, usually only main and testFixtures."
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-19 18:16
    - 22.9K bytes
    - Viewed (0)
  2. buildscripts/cross-compile.sh

    Daniel Jakots <******@****.***> 1702948102 -0500
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-12-19 01:08
    - 958 bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    Mikhail Lopatkin <******@****.***> 1701809516 +0100
    Registered: 2025-05-28 11:36
    - Last Modified: 2023-12-15 20:21
    - 1.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

        private static final Pattern HTML_ENCODED_CHAR = Pattern.compile("&#\\d+;");
        private static final Pattern HTML_ENTITY = Pattern.compile("&.+?;");
        private static final Pattern TAG = Pattern.compile("(?s)\\{@.+?\\}");
        private static final Pattern END_TAG_NAME = Pattern.compile("(?s)\\s|}");
        private static final Pattern WHITESPACE_WITH_EOL = Pattern.compile("(?s)\\s+");
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-08-19 15:07
    - 7.1K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/RegexRuleTest.java

            final RegexRule regexRule = new RegexRule();
            regexRule.defaultRule = true;
            regexRule.allRequired = true;
            regexRule.addRule("url", Pattern.compile("http:.*"));
            regexRule.addRule("mimeType", Pattern.compile("text/html"));
    
            assertTrue(regexRule.match(getTestData1()));
            assertTrue(regexRule.match(getTestData2()));
            assertTrue(regexRule.match(getTestData3()));
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 4.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

        PathScope MAIN_COMPILE = pathScope(
                "main-compile",
                ProjectScope.MAIN,
                DependencyScope.COMPILE_ONLY,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-07-10 20:52
    - 2.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

        private final Pattern linkPattern = Pattern.compile("<<([^,>]+)[^>]*>>");
        // groovy_plugin.adoc#groovy_plugin,Groovy
        private final Pattern linkWithHashPattern = Pattern.compile("([a-zA-Z_0-9-.]*)#(.*)");
        // link:{javadocPath}/org/gradle/api/java/archives/ManifestMergeDetails.html[ManifestMergeDetails]
        private final Pattern javadocLinkPattern = Pattern.compile("link:\\{javadocPath\\}/(.*?\\.html)");
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-27 09:07
    - 18.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

         * will default to {@link #COMPILE}.
         */
        UNDEFINED("", false),
    
        /**
         * Compile only.
         */
        COMPILE_ONLY("compile-only", false),
    
        /**
         * Compile, runtime and test.
         */
        COMPILE("compile", true),
    
        /**
         * Runtime and test.
         */
        RUNTIME("runtime", true),
    
        /**
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-19 14:33
    - 4K bytes
    - Viewed (0)
  9. ci/official/requirements_updater/README.md

    dependencies list and then execute the following command (which will call
    [pip-compile](https://pypi.org/project/pip-tools/) under the hood):
    
    ```
    bazel run //ci/official/requirements_updater:requirements.update --repo_env=HERMETIC_PYTHON_VERSION=3.12
    ```
    
    where `3.12` is the `Python` version you wish to update.
    
    Note, since it is still `pip` and `pip-compile` tools used under the hood, so
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-06-29 00:19
    - 3K bytes
    - Viewed (0)
  10. .teamcity/pom.xml

                        <execution>
                            <id>compile</id>
                            <phase>process-sources</phase>
                            <goals>
                                <goal>compile</goal>
                            </goals>
                        </execution>
                        <execution>
                            <id>test-compile</id>
                            <phase>process-test-sources</phase>
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-06 15:30
    - 7.4K bytes
    - Viewed (0)
Back to top