Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for whale (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

            CollectStepData collectStepTrace = null;
            ArtifactRequest artifactRequest = null;
            ArtifactDescriptorRequest artifactDescriptorRequest = null;
            Plugin plugin = null;
    
            while (trace != null) {
                Object data = trace.getData();
                if (data instanceof CollectStepData) {
                    collectStepTrace = (CollectStepData) data;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        // from the plugin.xml inside a plugin.
        //
        // TODO This whole method could probably removed by injecting lifeCyclePluginAnalyzer straight into client site.
        // TODO But for some reason the whole plexus appcontext refuses to start when I try this.
    
        public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                        return true;
                    }
                }
    
                return true;
            } catch (IOException e) {
                LOGGER.warn(
                        "An I/O error occurred while checking if the packaged artifact is up-to-date "
                                + "against the build output directory. "
                                + "Continuing with the assumption that it is up-to-date.",
                        e);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataDeploymentException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.repository.metadata;
    
    /**
     * Error while deploying repository metadata.
     *
     */
    @Deprecated
    public class RepositoryMetadataDeploymentException extends Throwable {
        public RepositoryMetadataDeploymentException(String message) {
            super(message);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.metadata;
    
    import org.apache.maven.artifact.Artifact;
    
    /**
     * Error while retrieving repository metadata from the repository - deprecated
     */
    @Deprecated
    public class ArtifactMetadataRetrievalException
            extends org.apache.maven.repository.legacy.metadata.ArtifactMetadataRetrievalException {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PropertiesAsMap.java

                        {
                            advance();
                        }
    
                        private void advance() {
                            next = null;
                            while (iterator.hasNext()) {
                                Entry<Object, Object> e = iterator.next();
                                if (PropertiesAsMap.matches(e)) {
                                    next = new Entry<String, String>() {
    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)
  7. maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                if (!result.getProblems().isEmpty() && LOGGER.isWarnEnabled()) {
                    LOGGER.warn("");
                    LOGGER.warn(
                            "Some problems were encountered while building the effective model for '{}'",
                            result.getProject().getId());
    
                    for (ModelProblem problem : result.getProblems()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

            Set<String> packages = new LinkedHashSet<>();
    
            try {
                Enumeration<URL> urls = loader.getResources(BUILDER.getExtensionDescriptorLocation());
                while (urls.hasMoreElements()) {
    
                    try (InputStream is = urls.nextElement().openStream()) {
                        ExtensionDescriptor descriptor = BUILDER.build(is);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 07:14:56 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface BuilderProblem {
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                Indicates the dependency is optional for use of this library. While the
                version of the dependency will be taken into account for dependency calculation if the
                library is used elsewhere, it will not be passed on transitively. Note: While the type
                of this field is {@code String} for technical reasons, the semantic type is actually
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top