Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 543 for finally (0.29 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/deployer/ArtifactDeployerTest.java

                assertTrue(deployedFile.exists());
                assertEquals("dummy", new String(Files.readAllBytes(deployedFile.toPath()), StandardCharsets.UTF_8).trim());
            } finally {
                sessionScope.exit();
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

    public class DefaultMaven implements Maven {
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final Lookup lookup;
    
        private final ExecutionEventCatapult eventCatapult;
    
        private final LegacySupport legacySupport;
    
        private final SessionScope sessionScope;
    
        private final RepositorySystemSessionFactory repositorySessionFactory;
    
        private final GraphBuilder graphBuilder;
    
    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)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

        private final BuildPluginManager pluginManager;
        private final MavenPluginManager mavenPluginManager;
        private final LifecycleDependencyResolver lifeCycleDependencyResolver;
        private final ExecutionEventCatapult eventCatapult;
    
        private final OwnerReentrantReadWriteLock aggregatorLock = new OwnerReentrantReadWriteLock();
    
        private final Provider<MojosExecutionStrategy> mojosExecutionStrategy;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                return interpolateInternal(src, valueSources, postProcessors, debug);
            } finally {
                interpolator.clearAnswers();
            }
        }
    
        protected List<ValueSource> createValueSources(
                final Model model, final File projectDir, final ProjectBuilderConfiguration config) {
            String timestampFormat = DEFAULT_BUILD_TIMESTAMP_FORMAT;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 13.5K bytes
    - Viewed (0)
  5. Jenkinsfile.s390x

                        sh "mvn clean ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore -PversionlessMavenDist -Dmaven.repo.local=${WORK_DIR}/.repository"
                    }
                } finally {
                    junit testResults: '**/target/surefire-reports/*.xml,**/target/failsafe-reports/*.xml', allowEmptyResults: true
                }    
                dir ('apache-maven/target') {
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

         * described.
         */
        static class UnknownRepositoryLayout implements ArtifactRepositoryLayout {
    
            private final String id;
    
            private final ArtifactRepositoryLayout fallback;
    
            UnknownRepositoryLayout(String id, ArtifactRepositoryLayout fallback) {
                this.id = id;
                this.fallback = fallback;
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class LifecycleModuleBuilder {
    
        private final MojoExecutor mojoExecutor;
        private final BuilderCommon builderCommon;
        private final ExecutionEventCatapult eventCatapult;
        private final ProjectExecutionListener projectExecutionListener;
        private final ConsumerPomArtifactTransformer consumerPomArtifactTransformer;
    
        @Inject
        public LifecycleModuleBuilder(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/DefaultMavenTest.java

    class DefaultMavenTest extends AbstractCoreMavenComponentTestCase {
        @Singleton
        @Named("WsrClassCatcher")
        private static final class WsrClassCatcher extends AbstractMavenLifecycleParticipant {
            private final AtomicReference<Class<?>> wsrClassRef = new AtomicReference<>(null);
    
            @Override
            public void afterProjectsRead(MavenSession session) throws MavenExecutionException {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

        private final ExtensionRealmCache extensionRealmCache;
        private final PluginVersionResolver pluginVersionResolver;
        private final PluginArtifactsCache pluginArtifactsCache;
        private final MavenPluginValidator pluginValidator;
        private final List<MavenPluginConfigurationValidator> configurationValidators;
        private final PluginValidationManager pluginValidationManager;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private final ProjectBuildingRequest request;
            private final RepositorySystemSession session;
            private final List<RemoteRepository> repositories;
            private final ReactorModelPool modelPool;
            private final ConcurrentMap<String, Object> parentCache;
            private final ModelTransformerContextBuilder transformerContextBuilder;
            private final ExecutorService executor;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
Back to top