You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by pl...@apache.org on 2003/01/26 08:27:39 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/appserver plugin.properties

plynch      2003/01/25 23:27:39

  Modified:    src/plugins-build/appserver plugin.properties
  Log:
  o adding properties for reference only, from the J2EE plugin implementation. Will cull later on
  
  Revision  Changes    Path
  1.2       +68 -0     jakarta-turbine-maven/src/plugins-build/appserver/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/appserver/plugin.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.properties	26 Jan 2003 06:03:22 -0000	1.1
  +++ plugin.properties	26 Jan 2003 07:27:39 -0000	1.2
  @@ -65,3 +65,71 @@
   #
   maven.appserver.root=${maven.appserver.dir}/webapps/ROOT
   
  +
  +#############################################################################
  +############################## L E G A C Y ##################################
  +# ---> These properties pasted here from the J2EE plugin implementation
  +# ---> They should be culled
  +#############################################################################
  +# A P P S E R V E R
  +#----------------------------------------------------------------------------
  +
  +#
  +# used to let the appserver implementation scripts know which version of j2ee we are
  +# running against
  +#
  +# maven.j2ee.version=13
  +
  +#
  +# the place where the main install of the application server resides
  +#
  +#maven.appserver.home=/apps/jakarta-tomcat-4
  +
  +#
  +# a supported name of an application server instance to install
  +#
  +#maven.appserver.name=tomcat
  +
  +#
  +# version number of the application server, in the form of ##
  +#
  +#maven.appserver.version=4.x
  +
  +## needed for dir names and messages to the user
  +#maven.appserver.fullname=${maven.appserver.name}-${maven.appserver.version}
  +
  +#
  +# ports to access this server instance
  +#
  +#maven.appserver.port.http=8082
  +#maven.appserver.port.https=8083
  +#maven.appserver.port.one=8087
  +#maven.appserver.port.two=8088
  +#maven.appserver.port.three=8089
  +
  +#
  +# where to install the local instance of the server
  +#
  +#maven.appserver.dir=${basedir}/server
  +
  +#
  +# files in an 'includes' pattern to include when controlling the server
  +# For example, if you have classes in your classpath you would like to
  +# include when starting the server, you could use
  +# maven.appserver.classpath=${java.class.path}
  +# paths can be absolute or relative to ${maven.appserver.dir} as that is
  +# where a jvm will be started. This is common for libraries that need sharing
  +# across all webapps installed in the server
  +#
  +#maven.appserver.classpath=
  +
  +#
  +# The host name, used when configuring, defaults to localhost
  +#
  +#maven.appserver.host=localhost
  +
  +#
  +# The URL used to test the current running status of the appserver
  +#
  +#maven.appserver.url=http://${maven.appserver.host}:${maven.appserver.port.http}/index.html
  +