- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 161 for protected (0.04 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java
return new DefaultModelReader(); } protected ProfileSelector newProfileSelector() { DefaultProfileSelector profileSelector = new DefaultProfileSelector(); for (ProfileActivator activator : newProfileActivators()) { profileSelector.addProfileActivator(activator); } return profileSelector; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 10.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
} } @Override protected Object getDependencyKey(Dependency dependency) { return dependency.getManagementKey(); } @Override protected Object getPluginKey(Plugin plugin) { return plugin.getKey(); } @Override protected Object getPluginExecutionKey(PluginExecution pluginExecution) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
} }); } protected void failIfFileNotExists(LocalContext context, String fileName, String message) { Path path = context.cwd.resolve(fileName); if (!Files.isRegularFile(path)) { context.parsingFailed = true; context.parserRequest.logger().error(message + ": " + path); } } protected InvokerRequest getInvokerRequest(LocalContext context) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java
return artifact; } protected void createLocalArtifact(Artifact artifact) throws Exception { createArtifact(artifact, localRepository()); } protected void createRemoteArtifact(Artifact artifact) throws Exception { createArtifact(artifact, remoteRepository()); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 09:40:15 GMT 2025 - 13.8K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
@Inject protected PlexusContainer container; @Inject protected RepositorySystem repositorySystem; @Inject protected MavenRepositorySystem mavenRepositorySystem; @Inject protected org.apache.maven.project.ProjectBuilder projectBuilder; protected abstract String getProjectsDirectory(); protected PlexusContainer getContainer() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 20:01:00 GMT 2025 - 12.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} } protected CoreExtensionSelector<C> createCoreExtensionSelector() { return new PrecedenceCoreExtensionSelector<>(); } protected ContainerCapsuleFactory<C> createContainerCapsuleFactory() { return new PlexusContainerCapsuleFactory<>(); } protected void postContainer(C context) throws Exception {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Oct 28 13:01:07 GMT 2025 - 43.2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
} }; } protected LoggerManager createLoggerManager() { return new Slf4jLoggerManager(); } protected void customizeContainerConfiguration(C context, ContainerConfiguration configuration) throws Exception {} protected void customizeContainer(C context, PlexusContainer container) throws Exception {} protected List<Path> parseExtClasspath(C context) throws Exception {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 14.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
public class DefaultRepositorySystemSessionFactoryTest { @Inject protected MavenRepositorySystem mavenRepositorySystem; @Inject protected EventSpyDispatcher eventSpyDispatcher; @Inject protected org.eclipse.aether.RepositorySystem aetherRepositorySystem; @Inject protected RuntimeInformation information; @Inject protected DefaultTypeRegistry defaultTypeRegistry; @InjectCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
return ":" + firstFailedProject.getArtifactId(); } protected static final Pattern NEXT_LINE = Pattern.compile("\r?\n"); protected static final Pattern LAST_ANSI_SEQUENCE = Pattern.compile("(\u001B\\[[;\\d]*[ -/]*[@-~])[^\u001B]*$"); protected static final String ANSI_RESET = "\u001B\u005Bm"; protected void logSummary(Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 11 17:20:46 GMT 2025 - 28.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
} } return result; } protected RecursionInterceptor getRecursionInterceptor() { return recursionInterceptor; } protected void setRecursionInterceptor(RecursionInterceptor recursionInterceptor) { this.recursionInterceptor = recursionInterceptor; } protected abstract Interpolator createInterpolator(); @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.6K bytes - Click Count (0)