- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for getDescriptor (0.45 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java
public org.apache.maven.api.model.Plugin getModel() { return delegate.getPlugin().getDelegate(); } @Override public PluginDescriptor getDescriptor() { return delegate.getMojoDescriptor().getPluginDescriptor().getPluginDescriptorV4(); } @Override public List<Lifecycle> getLifecycles() { try {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 5.2K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java
this.binaryCompatibility = binaryCompatibility; } public String getName() { return name; } public String getDescriptor() { return descriptor; } public BinaryCompatibility getBinaryCompatibility() { return binaryCompatibility; } @OverrideRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Aug 13 19:17:41 UTC 2024 - 8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Plugin.java
* Represents a maven plugin runtime * * @since 4.0.0 */ @Experimental public interface Plugin { @Nonnull org.apache.maven.api.model.Plugin getModel(); @Nonnull PluginDescriptor getDescriptor(); @Nonnull List<Lifecycle> getLifecycles(); @Nonnull ClassLoader getClassLoader(); @Nonnull Artifact getArtifact(); @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
* * @since 4.0.0 */ @Experimental public interface MojoExecution { @Nonnull Plugin getPlugin(); @Nonnull PluginExecution getModel(); @Nonnull MojoDescriptor getDescriptor(); @Nonnull String getExecutionId(); @Nonnull String getGoal(); @Nonnull String getLifecyclePhase(); @Nonnull Optional<XmlNode> getConfiguration();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
return method.getReplacedAccessors().stream() .anyMatch(replacedAccessor -> replacedAccessor.getName().equals(isGetterName) && replacedAccessor.getDescriptor().equals("()Z")); } return false; } private static boolean isOldMethod(JApiMethod jApiMethod, Map<AccessorKey, ReplacedAccessor> upgradedMethods, Pattern pattern) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 9.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
System.out.println("Result: " + result); assertSame( exec.getPlugin().getDescriptor(), result, "${mojo.plugin.descriptor} expression does not return plugin descriptor."); } @Test public void testPluginArtifactsExpressionReference() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0) -
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt
private fun List<AnnotationNode>?.hasNullableAnnotation() = has<org.jspecify.annotations.Nullable>() private inline fun <reified AnnotationType : Any> List<AnnotationNode>?.has() = has(Type.getDescriptor(AnnotationType::class.java)) private fun List<AnnotationNode>?.has(annotationTypeDescriptor: String) = this?.any { it.desc == annotationTypeDescriptor } ?: false private
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Mar 12 15:56:18 UTC 2025 - 20.2K bytes - Viewed (0)