- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 3,157 for project (0.03 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java
this.mojoExecution = mojoExecution; } public PluginExecutionException( MojoExecution mojoExecution, MavenProject project, String message, Throwable cause) { super(mojoExecution.getMojoDescriptor(), project, message, cause); this.mojoExecution = mojoExecution; } public PluginExecutionException(MojoExecution mojoExecution, MavenProject project, Exception cause) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
* @param time The build time of the project in milliseconds. * @param cause The cause of the build failure, may be {@code null}. */ public BuildFailure(MavenProject project, long time, Throwable cause) { this(project, Duration.ofMillis(time), cause); } /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 2.7K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt
addTestListener(testListener) } super.executeTests() } } class LocalRepositoryEnvironmentProvider(project: Project) : CommandLineArgumentProvider, Named { private val projectName = project.name @Internal val localRepo = project.objects.fileCollection() @get:Classpath val jars: SortedSet<File> get() = localRepo.asFileTree.matching {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 18:02:41 UTC 2025 - 7.7K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts
// do not attempt to find projects when the plugin is applied just to generate accessors if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test" /* remove once wrapper is updated */) { dependencies { testFixturesApi(project(":internal-testing")) // platform testFixturesImplementation(platform(project(":distributions-dependencies")))
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 14:00:52 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/InternalMavenSession.java
} List<Project> getProjects(List<org.apache.maven.project.MavenProject> projects); /** * May return null if the input project is null or is not part of the reactor. */ @Nullable Project getProject(org.apache.maven.project.MavenProject project); List<org.apache.maven.artifact.repository.ArtifactRepository> toArtifactRepositories(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 24 14:09:05 UTC 2025 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java
File pom1 = new File(pom0Basedir, "p1/pom.xml"); // load everything... MavenProject project0 = getProjectWithDependencies(pom0); MavenProject project1 = getProjectWithDependencies(pom1); assertEquals(pom0Basedir, project1.getParent().getBasedir()); Set set = project1.getArtifacts(); assertNotNull(set, "No artifacts"); assertFalse(set.isEmpty(), "No Artifacts");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java
File pom1 = new File(pom0Basedir, "p1/pom.xml"); // load the child project, which inherits from p0... MavenProject project0 = getProjectWithDependencies(pom0); MavenProject project1 = getProjectWithDependencies(pom1); assertEquals(pom0Basedir, project1.getParent().getBasedir()); Set set = project1.getArtifacts(); assertNotNull(set, "No artifacts");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.3K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
// TODO: Eventually, all projects should explicitly declare their target platform(s) usedInWorkers = false usedInClient = false usedInDaemon = true } // TODO: Most of these properties are the same across projects. We should // compute these at the settings-level instead of the project-level. identity { baseName = "gradle-$name"
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 5.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java
* * <p>Produced artifacts includes:</p><ul> * <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li> * <li>{@linkplain Project#getMainArtifact() the main artifact}</li> * <li>{@linkplain org.apache.maven.api.services.ProjectManager#attachArtifact(Session, Project, Path) artifacts to be attached to a project}</li> * </ul> *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.9K bytes - Viewed (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
} project(":failed-test-with-leftover").configureTestWithLeftover(false, true) project(":flaky-test-with-leftover").configureTestWithLeftover(true, true) project(":flaky-test-without-leftover").configureTestWithLeftover(true, false) project(":successful-test-with-leftover").configureTestWithLeftover(false, true)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jun 18 10:36:40 UTC 2025 - 10.9K bytes - Viewed (0)