- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 615 for myplugin (0.1 sec)
-
api/maven-api-plugin/pom.xml
</execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <excludes> <exclude>**/package-info.java</exclude> </excludes> </configuration> </plugin> </plugins> </build>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 4.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java
Metadata result = new Metadata(); Plugin plugin = new Plugin(); plugin.setPrefix(pluginInfo.goalPrefix); plugin.setArtifactId(pluginInfo.artifactId); plugin.setName(pluginInfo.name); result.getPlugins().add(plugin); return result; } @Override protected void merge(Metadata recessive) { List<Plugin> recessivePlugins = recessive.getPlugins();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("org.gradle.guides:gradle-guides-plugin:0.23") api("org.apache.ant:ant:1.10.15") // Bump the version brought in transitively by gradle-guides-plugin api("com.gradle:develocity-gradle-plugin:3.18.1") // Run `java build-logic-settings/UpdateDevelocityPluginVersion.java <new-version>` to update api("com.gradle.publish:plugin-publish-plugin:1.2.1")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/build.gradle.kts
// This Kotlin version should only be updated when updating the above kotlin-dsl version implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21") implementation("org.gradle:test-retry-gradle-plugin:1.5.2") implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.6")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 13:02:17 UTC 2024 - 843 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java
if (build != null) { List<Plugin> plugins = build.getPlugins(); Map<Object, Plugin> normalized = new LinkedHashMap<>(plugins.size() * 2); for (Plugin plugin : plugins) { Object key = plugin.getKey(); Plugin first = normalized.get(key); if (first != null) { plugin = merger.mergePlugin(plugin, first); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolver.java
// USED BY REMOTE RESOURCES PLUGIN, DEPENDENCY PLUGIN, SHADE PLUGIN @Deprecated void resolve(Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository) throws ArtifactResolutionException, ArtifactNotFoundException; // USED BY REMOTE RESOURCES PLUGIN @Deprecated void resolve( Artifact artifact,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java
boolean sourceDominant, Map<Object, Object> context) { List<Plugin> src = source.getPlugins(); if (!src.isEmpty()) { List<Plugin> tgt = target.getPlugins(); Map<Object, Plugin> master = new LinkedHashMap<>(tgt.size() * 2); for (Plugin element : tgt) { Object key = getPluginKey().apply(element);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java
* Sets the configuration to the configuration taken from the specified build plugin in the POM. First, the build * plugins will be searched for the specified plugin, if that fails, the plugin management section will be searched. * * @param model The POM to extract the plugin configuration from, may be {@code null}. * @param pluginGroupId The group id of the plugin whose configuration should be used, must not be {@code null} or
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
Plugin plugin = new Plugin(); plugin.setGroupId("org.apache.maven.plugins"); plugin.setArtifactId(artifactId); for (String goal : goals) { PluginExecution pluginExecution = new PluginExecution(); pluginExecution.setId("default-" + goal); pluginExecution.addGoal(goal); plugin.addExecution(pluginExecution);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
assertViolations(result, 0, 4, 0); assertTrue(result.getErrors().get(0).contains("duplicate declaration of plugin test:duplicate")); assertTrue(result.getErrors().get(1).contains("duplicate declaration of plugin test:managed-duplicate")); assertTrue(result.getErrors().get(2).contains("duplicate declaration of plugin profile:duplicate"));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.8K bytes - Viewed (0)