Author: jvanzyl
Date: Sat Jul 5 10:05:45 2008
New Revision: 674211
URL: http://svn.apache.org/viewvc?rev=674211&view=rev
Log:
o work around for MNGECLIPSE-607 until the interpolation is fixed, something
broke it and is wreaking havoc with platform testing within eclipse
Modified:
maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java
Modified:
maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java
URL:
http://svn.apache.org/viewvc/maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java?rev=674211&r1=674210&r2=674211&view=diff
==============================================================================
---
maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java
(original)
+++
maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java
Sat Jul 5 10:05:45 2008
@@ -51,7 +51,10 @@
public void initialize()
throws InitializationException
- {
+ {
+ applicationVersion = new DefaultArtifactVersion( "2.1-SNAPSHOT" );
+
+ /*
InputStream resourceAsStream = null;
try
{
@@ -80,5 +83,6 @@
{
IOUtil.close( resourceAsStream );
}
+ */
}
}