Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 259 for Kuper (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/providers/WrapperLifecycleProvider.java

            "wrapper", "org.apache.maven.plugins:maven-wrapper-plugin:" + MAVEN_WRAPPER_PLUGIN_VERSION + ":wrapper"
        };
        // END SNIPPET: wrapper
    
        @Inject
        public WrapperLifecycleProvider() {
            super(LIFECYCLE_ID, PHASES, BINDINGS);
        }
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jun 12 09:18:02 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/LifecyclePhaseNotFoundException.java

         * @param lifecyclePhase The name of the lifecycle phase that could not be located, may be {@code null}.
         */
        public LifecyclePhaseNotFoundException(String message, String lifecyclePhase) {
            super(message);
            this.lifecyclePhase = (lifecyclePhase != null) ? lifecyclePhase : "";
        }
    
        /**
         * Gets the lifecycle phase that was not found.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/providers/CleanLifecycleProvider.java

            "clean", "org.apache.maven.plugins:maven-clean-plugin:" + MAVEN_CLEAN_PLUGIN_VERSION + ":clean"
        };
        // END SNIPPET: clean
    
        @Inject
        public CleanLifecycleProvider() {
            super(LIFECYCLE_ID, PHASES, BINDINGS);
        }
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException.java

        public NoPluginFoundForPrefixException(
                String prefix,
                List<String> pluginGroups,
                LocalRepository localRepository,
                List<RemoteRepository> remoteRepositories) {
            super("No plugin found for prefix '" + prefix + "' in the current project and in the plugin groups "
                    + pluginGroups + " available from the repositories " + format(localRepository, remoteRepositories));
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSnapshotMetadata.java

        static final String SNAPSHOT = "SNAPSHOT";
    
        protected final Collection<Artifact> artifacts = new ArrayList<>();
    
        protected MavenSnapshotMetadata(Metadata metadata, Path path, Date timestamp) {
            super(metadata, path, timestamp);
        }
    
        protected static Metadata createRepositoryMetadata(Artifact artifact) {
            return Metadata.newBuilder()
                    .modelVersion("1.1.0")
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifact.java

    /**
     * ProjectArtifact
     */
    public class ProjectArtifact extends DefaultArtifact implements ArtifactWithDependencies {
        private MavenProject project;
    
        public ProjectArtifact(MavenProject project) {
            super(
                    project.getGroupId(),
                    project.getArtifactId(),
                    project.getVersion(),
                    null,
                    "pom",
                    null,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java

            "post-integration-test",
            "verify",
            "install",
            "deploy"
        };
        // END SNIPPET: default
    
        @Inject
        public DefaultLifecycleProvider() {
            super(
                    LIFECYCLE_ID,
                    PHASES,
                    null // no global plugin bindings for default lifecycle: they are defined per-packaging in separate
                    // providers
                    );
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator.java

            DEPRECATED_CORE_PARAMETERS = deprecatedCoreParameters;
        }
    
        @Inject
        DeprecatedCoreExpressionValidator(PluginValidationManager pluginValidationManager) {
            super(pluginValidationManager);
        }
    
        @Override
        protected String getParameterLogReason(Parameter parameter) {
            return "uses deprecated parameter expression '" + parameter.getDefaultValue() + "': "
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/JarLifecycleMappingProvider.java

            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: jar
    
        @Inject
        public JarLifecycleMappingProvider() {
            super(BINDINGS);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java

                        @Nonnull RemoteRepository repository,
                        @Nonnull Collection<Artifact> artifacts,
                        int retryFailedDeploymentCount) {
                    super(session);
                    this.repository = nonNull(repository, "repository cannot be null");
                    this.artifacts = unmodifiable(nonNull(artifacts, "artifacts cannot be null"));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.5K bytes
    - Viewed (0)
Back to top