Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for super (0.32 sec)

  1. maven-core/src/test/resources/projects/child-which-inherits-from-super-model.xml

    under the License.
    -->
    
    <model>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <name>Babar</name>
      <version>4.5</version>
    
      <!-- Build element should be inherited from the super model -->
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 954 bytes
    - Viewed (0)
  2. maven-core/src/site/apt/inheritance.apt

     * The maven super model
    
     * how parent poms are processed
    
     * the order in which elements in the POM are overridden
    
     * minimum element-set for a valid project pom
    
    
    Maven super model
    
     Inheritance is recursive in Maven but there is a special model which is the implicit super parent in the lineage
     of models you may specify:
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java

        @Deprecated
        public ArtifactMetadataRetrievalException(String message) {
            super(message, null, null);
        }
    
        /**
         * @param cause a cause
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(Throwable cause) {
            super(null, cause, null);
        }
    
        /**
         * @param message a message
    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)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    example: * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre> */ @Factory public static <T> Matcher<T> allOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third, Matcher<? super T> fourth, Matcher<? super T> fifth, Matcher<? super T> sixth) { List<Matcher<? super T>> matchers = new ArrayList<Matcher<? super T>>(6); matchers.add(first); matchers.add(second); matchers.add(third); matchers.add(fourth); matchers.add(fifth); matchers.add(sixth); return...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

            super(message, cause);
    
            this.project = project;
            pluginGroupId = plugin.getGroupId();
            pluginArtifactId = plugin.getArtifactId();
            pluginVersion = plugin.getVersion();
        }
    
        public PluginManagerException(Plugin plugin, String message, Throwable cause) {
            super(message, cause);
    
            pluginGroupId = plugin.getGroupId();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

                implements PathScopeRegistry {
    
            @Inject
            public DefaultPathScopeRegistry(List<PathScopeProvider> providers) {
                super(
                        providers,
                        PathScope.MAIN_COMPILE,
                        PathScope.MAIN_RUNTIME,
                        PathScope.TEST_COMPILE,
                        PathScope.TEST_RUNTIME);
            }
    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)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java

                MojoDescriptor mojoDescriptor, ClassRealm pluginRealm, String message, Throwable e) {
            super(mojoDescriptor, message, e);
    
            this.pluginRealm = pluginRealm;
        }
    
        public PluginContainerException(
                MojoDescriptor mojoDescriptor, ClassRealm pluginRealm, String message, ComponentLookupException e) {
            super(mojoDescriptor, message, e);
    
            this.pluginRealm = pluginRealm;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java

            super(message, artifact);
        }
    
        public ArtifactResolutionException(String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) {
            super(message, artifact, remoteRepositories);
        }
    
        public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) {
            super(message, artifact, null, cause);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSuperPomProvider.java

        /**
         * The cached super POM, lazily created.
         */
        private static final Map<String, Model> SUPER_MODELS = new ConcurrentHashMap<>();
    
        @Inject
        public DefaultSuperPomProvider(ModelProcessor modelProcessor) {
            this.modelProcessor = modelProcessor;
        }
    
        @Override
        public Model getSuperPom(String version) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3K bytes
    - Viewed (0)
Back to top