- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 3,133 for Mprotect (0.36 sec)
-
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java
/** * Gets the project settings file. * * @return The project settings file or {@code null} if none. * @since 4.0.0 */ File getProjectSettingsFile(); /** * Sets the project settings file. A non-existent settings file is equivalent to empty settings. * * @param projectSettingsFile The project settings file, may be {@code null} to disable project settings.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompileExtension.kt
*/ package gradlebuild.jvm import org.gradle.api.NamedDomainObjectContainer import org.gradle.api.NamedDomainObjectProvider import org.gradle.api.Project import org.gradle.api.tasks.SourceSet /** * A container of [JvmCompilation]s for a JVM project. * * Utility methods are provided to add compilations based on existing [SourceSet]s. */ abstract class JvmCompileExtension { companion object {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 14:00:52 UTC 2025 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* {@code profile > project}, hence active profile property may override project property. * <p> * The caller of this method should decide whether there is a project in scope (hence, a project instance * needs to be passed) or not. * * @param project {@link Project} or {@code null}. * @return the effective properties, never {@code null} */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/factory/simple.xml
</build> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </profile> <profile> <id>file</id> <activation> <file> <exists>simple.xml</exists> </file>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java
private final List<MavenProject> transitiveUpstreamProjects; public ProjectSegment(MavenProject project, TaskSegment taskSegment, MavenSession copiedSession) { this.project = project; this.taskSegment = taskSegment; this.session = copiedSession; final ProjectDependencyGraph dependencyGraph = getSession().getProjectDependencyGraph();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
sources = new LinkedHashSet<>(project.sources); if (project.getModel() != null) { setModel(project.getModel().clone()); } if (project.getOriginalModel() != null) { setOriginalModel(project.getOriginalModel()); } setExecutionRoot(project.isExecutionRoot()); if (project.getArtifact() != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
assertEquals("https://project.url/child", pom.getValue("url")); assertEquals("https://viewvc.project.url/child", pom.getValue("scm/url")); assertEquals("https://scm.project.url/child", pom.getValue("scm/connection")); assertEquals("https://scm.project.url/child", pom.getValue("scm/developerConnection")); assertEquals("https://site.project.url/child", pom.getValue("distributionManagement/site/url"));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
impl/maven-core/src/site/apt/default-bindings.apt.vm
%{snippet|id=jar|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/packaging/JarLifecycleMappingProvider.java} * Plugin bindings for <<<ejb>>> packaging %{snippet|id=ejb|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/packaging/EjbLifecycleMappingProvider.java} * Plugin bindings for <<<maven-plugin>>> packagingRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
pom.xml
<url>scm:git:******@****.***:codelibs/corelib.git</url> <developerConnection>scm:git:******@****.***:codelibs/corelib.git</developerConnection> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration>
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Dec 20 04:15:34 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
// reason it isn't ? This localization is kind-of a code smell. public static String getKey(MavenProject project) { return project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 10.3K bytes - Viewed (0)