Christian Schulte
c2f13f7e87
[MNG-6675] Make Resolver debug log messages for projects and plugins consistent
...
This closes #124 and closes #253
2019-06-15 20:12:36 +02:00
MartinKanters
aed5130487
[MNG-6665] toolchain.xml file should support environment variables
2019-06-08 10:43:12 +02:00
Stephen Connolly
01405a2d60
[MNG-6667] Enhance the error reporting when trying to build a modelVersion that the current Maven doesn't understand
2019-06-03 21:33:44 +01:00
Stefan Oehme
d3ace78602
[MNG-6638] Prevent reparsing POMs in MavenMetadataSource
...
If a dependency on another project is found, don't parse its
POM again, but instead use the model we already have in memory.
This saves a large amount of time and memory for builds that have
lots of subprojects and dependencies between them.
The approach was directly copied from DefaultArtifactDescriptorReader,
which does the same optimization.
This closes #244
2019-05-27 23:11:09 +02:00
Sylwester Lachiewicz
6c01ec18cb
[MNG-6633] - Reduce memory usage of excludes - fix rat/checkstyle errors
2019-05-25 14:26:09 +02:00
Stefan Oehme
790dc0f2b7
[MNG-6633] - Reduce memory usage of excludes
...
ExcludesArtifactFilter was highly inefficient.
It took the group and artifact ID of an Exclusion, concatenated them into
a new String, which was kept in memory for the whole duration
of the build and then compared that String against the concatenation
of group and artifact ID of each incoming artifact, adding more
CPU cycles than necessary.
Instead we now just wrap the existing Exclusion object and check its
groupId and artifactId against the artifact to tell whether it should
be excluded.
The old class is kept around for binary compatibility, but is now unused.
Closes #243
2019-05-25 13:12:47 +02:00
Sergey Chernov
1a18eb6c9c
[MNG-6626] fix DefaultExceptionHandler NPE
...
Closes #241
2019-05-13 09:43:56 +02:00
Stefan Oehme
1e03388d5b
[MNG-6632] - Remember artifact handlers after they've been used once
...
Otherwise we have to go through the whole sisu engine again,
which is very slow, because it does a linear scan.
2019-04-27 18:23:00 +02:00
Joseph Walton
fdde73fcb4
Remove unused code that triggers Error Prone ( #245 )
...
Running Error Prone over Maven triggers an infinite recursion
check in AbstractCoreMavenComponentTestCase.PluginBuilder
2019-04-20 16:08:06 +02:00
Sylwester Lachiewicz
763f76cf83
[MNG-6642] Revert "[MNG-5995] Remove dependency to maven-compat ( #185 )"
...
This partially reverts commit bb3ec5da71
to restore working with Tycho P2 repository.
2019-04-20 00:10:59 +02:00
Jesse Glick
0940c7c973
[MNG-6405] Fix basedir in MavenProject.deepCopy ( #225 )
...
* [MNG-6405] Fix basedir in MavenProject.deepCopy.
* Reproduced bug in test.
Failure without patch:
junit.framework.AssertionFailedError: Base directory is preserved across clone expected:<…/maven-core/target/test-classes> but was:<…/maven-core/target/test-classes/target>
at org.apache.maven.project.MavenProjectTest.testCloneWithBaseDir(MavenProjectTest.java:188)
* Code style. Not enforced in tests during build?
2019-04-16 21:28:03 +10:00
Karl Heinz Marbaise
5222f03d05
[maven-release-plugin] prepare for next development iteration
2019-04-04 20:56:37 +02:00
Karl Heinz Marbaise
d66c9c0b31
[maven-release-plugin] prepare release maven-3.6.1
2019-04-04 20:56:16 +02:00
Romain Manni-Bucau
0ba5753c17
[MNG-6618] adding org.slf4j.event in exported packages
...
Based on MNG-6360
2019-04-01 11:55:58 +02:00
Hervé Boutemy
4bec5502d5
[MNG-6600] add inputlocation tracking for default lifecycle executions
2019-03-11 23:44:31 +01:00
Michael Osipov
9dd4732b74
Revert "[MNG-6548] Lifecycle plugin version upgrades"
...
This reverts commit 33e4f201d3
.
Commit will be postponed to 3.7.0.
2019-02-17 20:30:25 +01:00
Sylwester Lachiewicz
bb3ec5da71
[MNG-5995] Remove dependency to maven-compat ( #185 )
...
No implementation for deprecated Maven 2.x RepositorySystem interface
2019-01-26 14:37:51 +01:00
Hervé Boutemy
24c762d7c3
[MNG-6533] catch InvalidArtifactRTException runtime exception
...
instead of global Exception that may hide too many cases
2019-01-14 14:30:06 +01:00
Mickael Istria
27332cfab0
[MNG-6533] ProjectBuilder report ModelProblem instead of Exception
...
Sending ModelProblems allows to keep processing other pom files.
2019-01-14 13:55:45 +01:00
Mickael Istria
8b7055fe3f
[MNG-6533] Prefer passing the interim project in ProjectBuildingResult
...
Initialize the interim project with "simple" items (ie do not build
not reference parent if it's not yet in the projectIndex) and returns
it when installation fails further.
This give a partial validation of the file, pretty convenient in IDEs.
2019-01-14 13:55:45 +01:00
Mickael Istria
ae1c32aa09
[MNG-6533] Test: ProjectBuildingException miss reference to MavenProject
2019-01-14 13:55:44 +01:00
Hervé Boutemy
049b7a7ba8
refactoring: reduced try/catch scope
2019-01-14 13:52:03 +01:00
Hervé Boutemy
2928dc6b68
refactoring: extracted initParent() method
2019-01-14 13:52:03 +01:00
Hervé Boutemy
fdf5d921a3
renamed variables for better understanding
2019-01-13 19:18:30 +01:00
Mickael Istria
d9facde3bc
[MNG-6530] Introduce system property to disable global model cache
...
The global model cache introduced in MNG-6311 causes severe regressions
in case of POM files changing during application lifetime.
This patch adds a system property
`defaultProjectBuilder.disableGlobalModelCache` that disables this global
model cache when set to true, ensure pom modifications are honored.
This closes #194
2019-01-08 15:25:27 +01:00
Michael Osipov
33e4f201d3
[MNG-6548] Lifecycle plugin version upgrades
...
* Upgrade to Maven Clean Plugin 3.1.0
* Upgrade to Maven Site Plugin 3.7.1
2019-01-07 13:23:57 +01:00
Josh Soref
71128cb6c0
spelling: vertices
...
This closes #102
2018-12-28 15:07:21 +01:00
Michael Osipov
c7ab9876f5
[MNG-6544] Replace CacheUtils#{eq,hash} with Objects
...
This closes #195
2018-12-27 21:41:59 +01:00
Duarte Meneses
c6bdafed23
[MNG-5965] Parallel build multiplies work if multiple goals are given
...
This closes #125
2018-12-26 15:24:16 +01:00
Mickael Istria
732e7de893
[MNG-6529] ProjectBuilder.build(List<Project> ...) honor
...
request.isResolveDependency
2018-12-18 09:04:17 +01:00
Sylwester Lachiewicz
78f605e377
[MNG-6515] Fix Javadoc build errors
2018-11-12 17:23:56 +01:00
Karl Heinz Marbaise
6e376d424e
[maven-release-plugin] prepare for next development iteration
2018-10-24 20:38:30 +02:00
Karl Heinz Marbaise
97c98ec64a
[maven-release-plugin] prepare release maven-3.6.0
2018-10-24 20:38:06 +02:00
HoaPhan
ba74b96633
[MNG-6492] - Minor improvement on Array construction, conversion performance
2018-10-24 18:07:13 +02:00
Christian Schulte
44826ab446
[MNG-6164] Collections inconsistently immutable
...
Make non-empty collections returned immutable just like those returned by
java.util.Collections.
2018-10-09 22:12:50 +02:00
rfscholte
7c1e7129b1
[MNG-6415] Project Artifacts Cache does not retain the order of classpath entries.
2018-09-24 19:50:39 +02:00
Sylwester Lachiewicz
8bc3c207d0
[MNG-6311] Implement class-level ModelCache in DefaultProjectBuilder to solve slow pom resolutions
...
Fix by: David Churcher
2018-09-14 18:43:47 +02:00
Phillip Webb
01f098efd1
[MNG-6475] Remove unused Guava dependencies
2018-09-13 20:45:25 +02:00
Hervé Boutemy
f5674713a6
improved documentation
2018-08-12 00:01:17 +02:00
rfscholte
72dca39807
Replace org.apache.commons.lang3.Validate#notNull with java.util.Objects#requireNonNull
2018-07-15 10:36:08 +02:00
Stephen Connolly
bf0bd6350e
Master is now on 3.6.0-SNAPSHOT
2018-06-17 22:38:49 +01:00
Stephen Connolly
1efd571b0a
[maven-release-plugin] prepare for next development iteration
2018-06-17 19:29:56 +01:00
Stephen Connolly
1edded0938
[maven-release-plugin] prepare release maven-3.5.4
2018-06-17 19:29:25 +01:00
Łukasz Dywicki
454a4e7954
[MNG-6411] Improve readability of project list returned when --resume-from option value is invalid
...
This closes #164
2018-05-18 22:47:24 +02:00
Michael Osipov
8e0efaa107
[MNG-6386] ${project.baseUri} is not a valid URI (according to RFC 3986)
...
File#toURI()#toString() produces a non-compliant URI making tools like
Subversion or Git to choke on those URIs. Whereas Path#toUri()#toASCIIString()
does the right job.
2018-05-07 22:35:43 +02:00
Michael Osipov
5beb347f41
Fix missing/improper use of @link
...
This closes #132
2018-05-05 22:56:09 +02:00
Sylwester Lachiewicz
faa9ef0cd3
[MNG-6370] ConcurrencyDependencyGraph#getNumberOfBuilds() does not remove finished projects from unfinished ones
...
This closes #161
2018-03-07 23:58:20 +01:00
Stephen Connolly
85b4e3d8e8
[maven-release-plugin] prepare for next development iteration
2018-02-24 19:29:56 +00:00
Stephen Connolly
3383c37e1f
[maven-release-plugin] prepare release maven-3.5.3
2018-02-24 19:29:21 +00:00
Sylwester Lachiewicz
b8c06e61ab
Remove Google Guava usage (move to Java7)
2018-02-11 11:54:17 +01:00