Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for runnable (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

                DeployResult result = session.getRepositorySystem().deploy(session.getSession(), deployRequest);
            } catch (DeploymentException e) {
                throw new ArtifactDeployerException("Unable to deploy artifacts", e);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultVersionResolver.java

                            return Optional.empty();
                        }
                    }
                };
            } catch (VersionResolutionException e) {
                throw new VersionResolverException("Unable to resolve version", e);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactResolver.java

                        paths.put(artifact, path);
                    }
                }
                return () -> paths;
            } catch (ArtifactResolutionException e) {
                throw new ArtifactResolverException("Unable to resolve artifact", e);
            }
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ReleaseArtifactTransformation.java

                try {
                    String version = resolveVersion(artifact, request);
    
                    if (Artifact.RELEASE_VERSION.equals(version)) {
                        throw new ArtifactNotFoundException("Unable to determine the release version", artifact);
                    }
    
                    artifact.setBaseVersion(version);
                    artifact.updateVersion(version, request.getLocalRepository());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultVersionRangeResolver.java

                            return Optional.empty();
                        }
                    }
                };
            } catch (VersionRangeResolutionException e) {
                throw new VersionRangeResolverException("Unable to resolve version range", e);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

            ClassLoader cloader = Thread.currentThread().getContextClassLoader();
    
            URL resourceUrl = cloader.getResource(resource);
    
            if (resourceUrl == null) {
                throw new FileNotFoundException("Unable to find: " + resource);
            }
    
            return new File(resourceUrl.toURI());
        }
    
        protected ArtifactRepository getLocalRepository() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

                            artifact.selectVersion(selected.toString());
                        } else {
                            throw new OverConstrainedVersionException(
                                    "Unable to get a selected Version for " + artifact.getArtifactId(), artifact);
                        }
                    }
    
                    ids.add(0, artifact);
                    node = node.parent;
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                                    }
                                });
                    }
                };
            } catch (ProjectBuildingException e) {
                throw new ProjectBuilderException("Unable to build project", e);
            }
        }
    
        private static class SourceWrapper implements ModelSource2 {
            private final Source source;
    
            SourceWrapper(Source source) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java

        public void initialize() throws InitializationException {
            String mavenVersion = rtInfo.getMavenVersion();
    
            if (mavenVersion == null || mavenVersion.isEmpty()) {
                throw new InitializationException("Unable to read Maven version from maven-core");
            }
    
            applicationVersion = new DefaultArtifactVersion(mavenVersion);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                    logger.debug(
                            "Unable to find artifact " + artifact.getId() + " in repository " + repository.getId() + " ("
                                    + repository.getUrl() + ")",
                            e);
    
                } catch (TransferFailedException e) {
                    tfe = e;
    
                    String msg = "Unable to get artifact " + artifact.getId() + " from repository " + repository.getId()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
Back to top