Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for inheritedByDefault (0.32 sec)

  1. maven-compat/src/main/resources/META-INF/maven/plugin.xml

      <artifactId>maven-state-management</artifactId>
      <version>2.1</version>
      <goalPrefix>statemgmt</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
      <inheritedByDefault>true</inheritedByDefault>
      <mojos>
        <mojo>
          <goal>start-fork</goal>
          <description>Setup the appropriate build state to initiate a forked execution.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 16:05:24 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <version>1.0.0+</version>
              <description></description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>inheritedByDefault</name>
              <version>1.0.0+</version>
              <description></description>
              <type>boolean</type>
              <defaultValue>true</defaultValue>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top