- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 919 for plugin (0.34 sec)
-
api/maven-api-plugin/src/main/mdo/plugin.mdo
xml.namespace="http://maven.apache.org/PLUGIN/${version}" xml.schemaLocation="https://maven.apache.org/xsd/plugin-${version}.xsd"> <id>plugin</id> <name>PluginDescriptor</name> <description><![CDATA[ Maven 4 Plugin descriptor, stored in {@code META-INF/maven/plugin.xml} in a plugin's jar artifact. This descriptor is generally using the information contained in the annotations of the plugin api.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0) -
plugin.xml
<get dest="${target.dir}"> <url url="${repo.url}/${plugin.groupId}/${plugin.name.prefix}${plugin.name}/${plugin.version}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip" /> </get> <unzip dest="${plugins.dir}/${plugin.name}" src="${target.dir}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip"> <patternset> <include name="**" /> </patternset> <cutdirsmapper dirs="1" /> </unzip> </target>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 23:33:43 UTC 2024 - 3.5K bytes - Viewed (0) -
cni/pkg/plugin/plugin.go
// See the License for the specific language governing permissions and // limitations under the License. // This is a sample chained plugin that supports multiple CNI versions. It // parses prevResult according to the cniVersion package plugin import ( "context" "encoding/json" "errors" "fmt" "path/filepath" "runtime/debug" "strconv" "time"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
compat/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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Plugin.java
import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.plugin.descriptor.PluginDescriptor; import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle; /** * Represents a maven plugin runtime * * @since 4.0.0 */ @Experimental public interface Plugin { @Nonnull org.apache.maven.api.model.Plugin getModel(); @Nonnull PluginDescriptor getDescriptor();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/plugin-manager.txt
the component descriptor and when it's loaded we can add the discoverer, that would be simpler. I could also do this with the lister as well i'l // 1 the metadata -> model plugin/mojo descriptor // 2 tools for doing the mapping // 3 the component model -> interfaces for the plugin // The plugin manager should load up a directory structure of plugins.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.9K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin.xml
<build> <pluginManagement> <plugins> <plugin> <groupId>test</groupId> <artifactId>managed-duplicate</artifactId> </plugin> <plugin> <groupId>test</groupId> <artifactId>managed-duplicate</artifactId> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>test</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-plugin-version.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0)