Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,079 for pluginA (0.23 sec)

  1. maven-plugin-api/src/test/resources/plugin.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <plugin>
      <description>plugin-description</description>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-jar-plugin</artifactId>
      <version>2.3-SNAPSHOT</version>
      <goalPrefix>jar</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 16:05:24 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/resources/META-INF/maven/plugin.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <plugin>
      <description>Maven Internal State-Management Plugins</description>
      <groupId>org.apache.maven.plugins.internal</groupId>
      <artifactId>maven-state-management</artifactId>
      <version>2.1</version>
      <goalPrefix>statemgmt</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/plugin-markers.puml

      file "<b>groupId</b> com.example.hello\n<b>artifactId</b> com.example.hello.gradle.plugin\n<b>version</b> 1.0.0" as marker1
      file "<b>groupId</b> com.example.goodbye\n<b>artifactId</b> com.example.goodbye.gradle.plugin\n<b>version</b> 1.0.0" as marker2
    
      file "<b>groupId</b> com.example\n<b>artifactId</b> sample-plugins\n<b>version</b> 1.0.0\n\n<&file> sample-plugins-1.0.0.jar" as main
    
      marker1 --> main
      marker2 --> main
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 595 bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml

          <plugin>
            <groupId>build</groupId>
            <artifactId>plugin</artifactId>
            <executions>
              <execution>
                <id>a</id>
                <phase>test</phase>
              </execution>
              <execution>
                <id>a</id>
                <phase>test</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 31 11:27:00 UTC 2010
    - 2.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-parent.xml

              <overrides>
                <parent-only>parent</parent-only>
                <parent>parent</parent>
              </overrides>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
            <artifactId>MNG-5115</artifactId>
            <reportSets>
              <reportSet>
                <id>default-inherited</id>
                <reports>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	_, err = plugin.Open("plugin2-dup.so")
    	if err == nil {
    		log.Fatal(`plugin.Open("plugin2-dup.so"): duplicate open after bad plugin should have failed`)
    	}
    	_, err = plugin.Open("plugin2.so")
    	if err != nil {
    		log.Fatalf(`plugin.Open("plugin2.so"): second open with same name failed: %v`, err)
    	}
    
    	// Test that unexported types with the same names in
    	// different plugins do not interfere with each other.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    // limitations under the License.
    
    // Package plugin defines the plugin implementations that the main pprof driver requires.
    package plugin
    
    import (
    	"io"
    	"net/http"
    	"regexp"
    	"time"
    
    	"github.com/google/pprof/profile"
    )
    
    // Options groups all the optional plugins into pprof.
    type Options struct {
    	Writer  Writer
    	Flagset FlagSet
    	Fetch   Fetcher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.jar

    public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-clean-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven core. 2009 maven-core-it file:///${basedir}/repo true true org.apache.maven maven-plugin-api 2.0 . pom.xml src/** src/main/resources src/main/java/org/apache/maven/plugins/coreit/ItMojo.java src/main/java/org/apache/maven/plugins/coreit/ItMojo.java package org.apache.maven.plugin.coreit; /* * Licensed to the Apache Software Foundation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 6.6K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/validation/bad-plugin-version.xml

      <version>0.1</version>
    
      <build>
        <plugins>
          <plugin>
            <groupId>test</groupId>
            <artifactId>good</artifactId>
            <version>1.0</version>
          </plugin>
          <plugin>
            <groupId>test</groupId>
            <artifactId>mip</artifactId>
            <version>${missing.property}</version>
          </plugin>
          <plugin>
            <groupId>test</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Nov 24 21:36:06 UTC 2010
    - 1.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/empty-plugin-version.xml

      <artifactId>foo</artifactId>
      <groupId>bar</groupId>
      <version>1.0</version>
      <packaging>pack</packaging>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version></version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 23 23:58:44 UTC 2009
    - 1.1K bytes
    - Viewed (0)
Back to top