Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for inheritedByDefault (0.22 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            }
            return mojos;
        }
    
        private boolean extractInheritedByDefault(PlexusConfiguration c) {
            String inheritedByDefault = c.getChild("inheritedByDefault").getValue();
    
            if (inheritedByDefault != null) {
                return Boolean.parseBoolean(inheritedByDefault);
            }
            return false;
        }
    
        private boolean extractIsolatedRealm(PlexusConfiguration c) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/test/resources/plugin.xml

      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-jar-plugin</artifactId>
      <version>2.3-SNAPSHOT</version>
      <goalPrefix>jar</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
      <inheritedByDefault>true</inheritedByDefault>
      <mojos>
        <mojo>
          <goal>jar</goal>
          <description>mojo-description</description>
          <requiresDependencyResolution>runtime</requiresDependencyResolution>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        public boolean isInheritedByDefault() {
            return inheritedByDefault;
        }
    
        /**
         * @param inheritedByDefault <code>true</code> if the Mojo is inherited, <code>false</code> otherwise.
         */
        public void setInheritedByDefault(boolean inheritedByDefault) {
            this.inheritedByDefault = inheritedByDefault;
        }
    
        /** {@inheritDoc} */
        public boolean equals(Object object) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        }
    
        public String getSource() {
            return source;
        }
    
        public boolean isInheritedByDefault() {
            return inheritedByDefault;
        }
    
        public void setInheritedByDefault(boolean inheritedByDefault) {
            this.inheritedByDefault = inheritedByDefault;
        }
    
        /**
         * Gets the artifacts that make up the plugin's class realm, excluding artifacts shadowed by the Maven core realm
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top