Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2013-06-15 11:23:33 +0000
committerIgor Fedorenko2013-06-16 17:02:25 +0000
commit2ced6bdd4fdec5faa8864fda4c3c6596c2055c4a (patch)
tree16c9d7440c61ed11aa52f28b048f324e80307e52 /m2e-maven-runtime/org.eclipse.m2e.maven.runtime
parent561d6fbfd7c132dcdc29f4bd610aa2a590c498c7 (diff)
downloadm2e-core-2ced6bdd4fdec5faa8864fda4c3c6596c2055c4a.tar.gz
m2e-core-2ced6bdd4fdec5faa8864fda4c3c6596c2055c4a.tar.xz
m2e-core-2ced6bdd4fdec5faa8864fda4c3c6596c2055c4a.zip
Reintroduced small MavenProject instances cache
MavenProject instances cache size is hardcoded to 5 and it is meant to improve incremental build performance. From limited and not very scientific testing, trivial m2e-maven-runtime incremental build takes ~130ms without the cache and <30ms with the cache. Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'm2e-maven-runtime/org.eclipse.m2e.maven.runtime')
-rw-r--r--m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml b/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml
index 9cb34edb..82e07f97 100644
--- a/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml
+++ b/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml
@@ -30,7 +30,7 @@
<sisu.version>2.3.0</sisu.version>
<aether.version>1.13.1</aether.version>
- <guava.version>10.0.1</guava.version>
+ <guava.version>11.0.2</guava.version>
<!-- below are m2e-specific addons -->
<plexus-build-api.version>0.0.7</plexus-build-api.version>
@@ -200,6 +200,7 @@
org.sonatype.plexus.*,
org.sonatype.aether.*,
com.google.inject.*,
+ com.google.common.*,
javax.inject.*,
org.sonatype.maven.wagon.*,
</_exportcontents>

Back to the top