Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 263 for implement (0.33 sec)

  1. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

    import org.eclipse.aether.repository.WorkspaceRepository;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultProjectArtifactsCache implements ProjectArtifactsCache {
        /**
         * CacheKey
         */
        protected static class CacheKey implements Key {
    
            private final String groupId;
    
            private final String artifactId;
    
            private final String version;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            return new MappedList<>(node.getRepositories(), session::getRemoteRepository);
        }
    
        @Override
        public Optional<RemoteRepository> getRepository() {
            // TODO: v4: implement
            throw new UnsupportedOperationException("Not implemented yet");
        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
                return nodeString;
            }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            return new MappedList<>(node.getRepositories(), session::getRemoteRepository);
        }
    
        @Override
        public Optional<RemoteRepository> getRepository() {
            // TODO: v4: implement
            throw new UnsupportedOperationException("Not implemented yet");
        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
                return nodeString;
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/offline-mode.apt

    *** DefaultLifecycleExecutor
    
      When binding goals to the project's configured lifecycle, each mojo
      descriptor should declare whether it requires online/offline status.
      This value should be a java.lang.Boolean, so it can implement 3VL
      (three value logic: yes, no, don't-care). The requiresOnline
      field in the mojo descriptor has the following semantics:
    
      [true] Online status is required for this mojo to function
             correctly.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     could encapsulate everything we need about the project in the POM including
     plugin parameters and anything else.
    
     We once had a document that Vincent and I agreed upon and I was about to
     implement it and then I disappeared for 8 months so it never came to pass.
    
     So I guess it's important to figure out what people are using properties
     files for and see if we can't incorporate it all into the POM. Or if we do
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

                implements LanguageRegistry {
    
            @Inject
            public DefaultLanguageRegistry(List<LanguageProvider> providers) {
                super(providers, Language.NONE, Language.JAVA_FAMILY);
            }
        }
    
        static class DefaultExtensibleEnumRegistry<T extends ExtensibleEnum, P extends ExtensibleEnumProvider<T>>
                implements ExtensibleEnumRegistry<T> {
    
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelVersionParser.java

    import org.eclipse.aether.version.VersionScheme;
    
    import static java.util.Objects.requireNonNull;
    
    @Named
    @Singleton
    public class DefaultModelVersionParser implements ModelVersionParser {
        private static final String SNAPSHOT = "SNAPSHOT";
        private static final Pattern SNAPSHOT_TIMESTAMP = Pattern.compile("^(.*-)?([0-9]{8}\\.[0-9]{6}-[0-9]+)$");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

    import org.apache.maven.settings.building.SettingsProblem;
    import org.apache.maven.settings.building.SettingsSource;
    
    @Named
    @Singleton
    public class DefaultSettingsBuilder implements SettingsBuilder {
    
        private final org.apache.maven.settings.building.SettingsBuilder builder;
    
        @Inject
        public DefaultSettingsBuilder(org.apache.maven.settings.building.SettingsBuilder builder) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifact.java

    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.DependencyManagement;
    import org.apache.maven.project.MavenProject;
    
    /**
     * ProjectArtifact
     */
    public class ProjectArtifact extends DefaultArtifact implements ArtifactWithDependencies {
        private MavenProject project;
    
        public ProjectArtifact(MavenProject project) {
            super(
                    project.getGroupId(),
                    project.getArtifactId(),
    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)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

    import org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor;
    import org.codehaus.plexus.interpolation.util.ValueSourceUtils;
    
    @Named
    @Singleton
    public class DefaultModelInterpolator implements ModelInterpolator {
    
        private static final String PREFIX_PROJECT = "project.";
        private static final String PREFIX_POM = "pom.";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top