Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 256 for esbuild (0.19 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

     *
     * @since 4.0.0
     */
    public final class Features {
    
        /**
         * Name of the Maven user property to enable or disable the build/consumer POM feature.
         */
        public static final String BUILDCONSUMER = "maven.buildconsumer";
    
        private Features() {}
    
        /**
         * Check if the build/consumer POM feature is active.
         */
        public static boolean buildConsumer(@Nullable Properties userProperties) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 13:04:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

            return create(ArtifactCoordinateFactoryRequest.build(session, coordinateString));
        }
    
        @Nonnull
        default ArtifactCoordinate create(
                @Nonnull Session session, String groupId, String artifactId, String version, String extension) {
            return create(ArtifactCoordinateFactoryRequest.build(session, groupId, artifactId, version, extension));
        }
    
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

        @Test
        void testBuilderCommon() {
            List<String> msgs = new ArrayList<>();
            msgs.add("*****************************************************************");
            msgs.add("* Your build is requesting parallel execution, but project      *");
            msgs.add("* contains the following plugin(s) that have goals not marked   *");
            msgs.add("* as @threadSafe to support parallel building.                  *");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/BuildListCalculatorTest.java

            assertEquals(3, taskSegments.size(), "Stub data contains 3 segments");
            assertEquals(6, segments.size(), "Stub data contains 6 items");
            final ProjectSegment build = segments.get(0);
            assertNotNull(build);
    
            for (ProjectSegment segment : segments) {
                assertSame(session, segment.getSession());
            }
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactory.java

        @Nonnull
        default Artifact create(
                @Nonnull Session session, String groupId, String artifactId, String version, String extension) {
            return create(ArtifactFactoryRequest.build(session, groupId, artifactId, version, extension));
        }
    
        @Nonnull
        default Artifact create(
                @Nonnull Session session,
                String groupId,
                String artifactId,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

                            .id("default-" + c[3])
                            .phase(phase)
                            .goals(Collections.singletonList(c[3]))
                            .build()))
                    .build();
        }
    
        static class DefaultPhase implements Lifecycle.Phase {
            private final String name;
            private final List<Plugin> plugins;
            private final List<Lifecycle.Phase> phases;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/TestApiStandalone.java

            ModelBuilder builder = session.getService(ModelBuilder.class);
            ModelBuilderResult result = builder.build(ModelBuilderRequest.builder()
                    .session(session)
                    .source(ModelSource.fromPath(Paths.get("pom.xml").toAbsolutePath()))
                    .projectBuild(true)
                    .build());
            assertNotNull(result.getEffectiveModel());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        //
        // 8) Create ReactorReader with the getProjectMap( projects ). NOTE that getProjectMap(projects) is the code that
        // checks for duplicate projects definitions in the build. Ideally this type of duplicate checking should be
        // part of getting the reactor projects in 6). The duplicate checking is conflated with getProjectMap(projects).
        //
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

            Properties properties =
                    loadResumptionFile(Paths.get(rootProject.getBuild().getDirectory()));
            applyResumptionProperties(request, properties);
        }
    
        @Override
        public void removeResumptionData(MavenProject rootProject) {
            Path resumeProperties = Paths.get(rootProject.getBuild().getDirectory(), RESUME_PROPERTIES_FILENAME);
            try {
                Files.deleteIfExists(resumeProperties);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

         * configurations, as in the case where you want to use the artifact's final name as a parameter. In this case, you
         * want the user to modify <code>&lt;build&gt;&lt;finalName/&gt;&lt;/build&gt;</code> rather than specifying a value
         * for finalName directly in the plugin configuration section. It is also useful to ensure that - for example - a
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top