CVS: plexus-container-new/src/java/org/apache/plexus PlexusContainerHost.java,1.1,1.2
[email protected] Fri, 2 May 2003 07:46:10 -0500
| Newsgroups | gmane.comp.java.plexus.devel |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/plexus/plexus-container-new/src/java/org/apache/plexus
In directory eng.werken.com:/tmp/cvs-serv26462/src/java/org/apache/plexus
Modified Files:
PlexusContainerHost.java
Log Message:
Put plexus.xxxx as Strings into the context instead of files.
Index: PlexusContainerHost.java
===================================================================
RCS file: /cvsroot/plexus/plexus-container-new/src/java/org/apache/plexus/PlexusContainerHost.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- PlexusContainerHost.java 27 Apr 2003 16:27:39 -0000 1.1
+++ PlexusContainerHost.java 2 May 2003 12:46:04 -0000 1.2
@@ -98,13 +98,13 @@
container.setConfigurationResource( new FileReader( configurationResource ) );
container.addContextValue( "plexus.home",
- new File( System.getProperty( "plexus.home" ) ) );
+ System.getProperty( "plexus.home" ) );
container.addContextValue( "plexus.work",
- new File( System.getProperty( "plexus.home" ) + "/work" ) );
+ System.getProperty( "plexus.home" ) + "/work" );
container.addContextValue( "plexus.logs",
- new File( System.getProperty( "plexus.home" ) + "/logs" ) );
+ System.getProperty( "plexus.home" ) + "/logs" );
// Move this to the logging subsystem. And there might be a logging directory
// so we need better analsys as the container might be embedded.