- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for getDescription (0.08 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
this.setAlias(p.getAlias()); this.setName(p.getName()); this.setRequired(p.isRequired()); this.setEditable(p.isEditable()); this.setDescription(p.getDescription()); this.setExpression(p.getExpression()); this.setDeprecated(p.getDeprecated()); this.setDefaultValue(p.getDefaultValue()); this.setType(p.getType());
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-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
this.setGoalPrefix(original.getGoalPrefix()); this.setInheritedByDefault(original.isInheritedByDefault()); this.setName(original.getName()); this.setDescription(original.getDescription()); this.setRequiredMavenVersion(original.getRequiredMavenVersion()); this.setRequiredJavaVersion(original.getRequiredJavaVersion());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.2K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertEquals("plugin-description", pd.getDescription()); assertFalse(pd.isIsolatedRealm()); assertTrue(pd.isInheritedByDefault()); assertEquals(2, pd.getMojos().size()); assertEquals(1, pd.getDependencies().size()); MojoDescriptor md = pd.getMojos().get(0); assertEquals("jar", md.getGoal()); assertEquals("mojo-description", md.getDescription());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
{ Model target = new Model(); target.setDescription( "TARGET" ); Model source = new Model(); source.setDescription( "SOURCE" ); modelMerger.merge( target, source, true, null ); assertThat( target.getDescription(), is( "SOURCE" ) ); target.setDescription( "TARGET" ); modelMerger.merge( target, source, false, null );
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
} public Map<String, Artifact> getArtifactMap() { return artifactMap; } public void setDescription(String description) { this.description = description; } public String getDescription() { return description; } } public static class Build {} public static class Dependency {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} boolean error = false; if (option.getDeprecated().getDescription() != null) { sb.append(": ").append(option.getDeprecated().getDescription()); error = option.getDeprecated().getDescription().startsWith("UNSUPPORTED:"); } if (error) { slf4jLogger.error(sb.toString());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
mojoDescriptorV4 = org.apache.maven.api.plugin.descriptor.MojoDescriptor.newBuilder() .goal(goal) .description(getDescription()) .implementation(getImplementation()) .language(getLanguage()) .phase(phase) .executeGoal(executeGoal)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
pluginDescriptor.setVersion(extractVersion(c)); pluginDescriptor.setGoalPrefix(extractGoalPrefix(c)); pluginDescriptor.setName(extractName(c)); pluginDescriptor.setDescription(extractDescription(c)); pluginDescriptor.setIsolatedRealm(extractIsolatedRealm(c)); pluginDescriptor.setInheritedByDefault(extractInheritedByDefault(c));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0)