Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Kuper (0.22 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/LookupException.java

        public LookupException(String message) {
            super(message);
        }
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
        public LookupException(String message, Exception e) {
            super(message, e);
        }
    
        /**
         * @param e the {@link Exception}
         */
        public LookupException(Exception e) {
            super(e);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t03/ProjectInheritanceTest.java

        // ----------------------------------------------------------------------
        //
        // p1 inherits from p0
        // p0 inherits from super model
        //
        // or we can show it graphically as:
        //
        // p1 ---> p0 --> super model
        //
        // ----------------------------------------------------------------------
    
        @Test
        void testProjectInheritance() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Graph.java

            CycleDetectedException(String message, List<String> cycle) {
                super(message);
                this.cycle = cycle;
            }
    
            public List<String> getCycle() {
                return cycle;
            }
    
            @Override
            public String getMessage() {
                return super.getMessage() + " " + String.join(" --> ", cycle);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadata.java

        }
    
        private final PluginInfo pluginInfo;
    
        PluginsMetadata(PluginInfo pluginInfo, Date timestamp) {
            super(createRepositoryMetadata(pluginInfo), (Path) null, timestamp);
            this.pluginInfo = pluginInfo;
        }
    
        PluginsMetadata(PluginInfo pluginInfo, Path path, Date timestamp) {
            super(createRepositoryMetadata(pluginInfo), path, timestamp);
            this.pluginInfo = pluginInfo;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadata.java

        private final Artifact artifact;
    
        VersionsMetadata(Artifact artifact, Date timestamp) {
            super(createRepositoryMetadata(artifact), (Path) null, timestamp);
            this.artifact = artifact;
        }
    
        VersionsMetadata(Artifact artifact, Path path, Date timestamp) {
            super(createRepositoryMetadata(artifact), path, timestamp);
            this.artifact = artifact;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java

        // ----------------------------------------------------------------------
        //
        // p1 inherits from p0
        // p0 inherits from super model
        //
        // or we can show it graphically as:
        //
        // p1 ---> p0 --> super model
        //
        // ----------------------------------------------------------------------
    
        @Test
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

             * @param prefix the prefix.
             * @param root the root of the graph.
             */
            public PrefixedObjectValueSource(String prefix, Object root) {
                super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix));
            }
    
            /**
             * Wrap the specified root object, allowing the specified list of expression
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java

                        @Nonnull Session session,
                        @Nullable Source globalToolchainsSource,
                        @Nullable Source userToolchainsSource) {
                    super(session);
                    this.globalToolchainsSource = globalToolchainsSource;
                    this.userToolchainsSource = userToolchainsSource;
                }
    
                @Nonnull
                @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top