- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 2,342 for project3 (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java
* under the License. */ package org.apache.maven.execution; import org.apache.maven.project.MavenProject; /** * Instances of this interface retrieve and store data for the --resume / -r feature. This data is used to ensure newer * builds of the same project, that have the -r command-line flag, skip successfully built projects during earlier * invocations of Maven. */ public interface BuildResumptionDataRepository { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
* from any repository but are present among the set of specified projects will not cause an exception. Instead, * those unresolved artifacts will be returned in the result set, allowing the caller to take special care of * artifacts that haven't been build yet. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java
import org.apache.maven.plugin.PluginExecutionException; import org.apache.maven.project.ProjectBuildingException; import org.apache.maven.project.ProjectBuildingResult; /* - test projects for each of these - how to categorize the problems so that the id of the problem can be match to a page with descriptive help and the test project - nice little sample projects that could be run in the core as well as integration tests All Possible Errors
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
import configurations.SanityCheck import configurations.SmokeIdeTests import configurations.SmokeTests import configurations.TestPerformanceTest import projects.DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE import projects.DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE import projects.DEFAULT_MACOS_FUNCTIONAL_TEST_BUCKET_SIZE enum class StageName(val stageName: String, val description: String, val uuid: String) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
public void setProjects(List<MavenProject> projects) { if (!projects.isEmpty()) { MavenProject first = projects.get(0); this.currentProject = ThreadLocal.withInitial(() -> first); this.topLevelProject = projects.stream() .filter(project -> project.isExecutionRoot()) .findFirst() .orElse(first);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java
return new ArrayList<>(); } } private Optional<MavenProject> findOptionalProjectBySelector( List<MavenProject> projects, File reactorDirectory, String selector) { return projects.stream() .filter(project -> isMatchingProject(project, selector, reactorDirectory)) .findFirst(); } File getBaseDirectoryFromRequest(MavenExecutionRequest request) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.3K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
# For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. name: "CodeQL" on: push: branches: [master] pull_request: # The branches below must be a subset of the branches above branches: [master] schedule: - cron: '0 9 * * 3' jobs:
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Oct 02 13:22:07 UTC 2020 - 2.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* the {@code /project/modules/module} elements of the POM in the aggregator project. * Note that the aggregator project is required to have a {@code pom} packaging.</p> * * <p><dfn>Project inheritance</dfn> defines a parent-child relationship between projects. * The <dfn>child project</dfn> will inherit all the information from the <dfn>parent project</dfn> * POM.</p> * */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 6.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java
} } public boolean isBlackListed(MavenProject project) { return blackList.contains(getProjectKey(project)); } private static String getProjectKey(MavenProject project) { return ArtifactUtils.versionlessKey(project.getGroupId(), project.getArtifactId()); } public void registerBuildFailure(MavenProject project, Exception error, String task, long time) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
okhttp-logging-interceptor/build.gradle.kts
id("binary-compatibility-validator") } project.applyOsgi( "Export-Package: okhttp3.logging", "Automatic-Module-Name: okhttp3.logging", "Bundle-SymbolicName: com.squareup.okhttp3.logging" ) dependencies { api(projects.okhttp) compileOnly(libs.findbugs.jsr305) testCompileOnly(libs.findbugs.jsr305) testImplementation(libs.junit) testImplementation(projects.mockwebserver3)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 842 bytes - Viewed (0)