Author: dblevins
Date: Mon Sep 17 22:19:36 2007
New Revision: 576702
URL: http://svn.apache.org/viewvc?rev=576702&view=rev
Log:
revision 576701: Updating NOTICE, README and LICENSE
Modified:
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/assembly/bin.xml
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/conf/README.txt
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/resources/README.txt
Modified:
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/assembly/bin.xml?rev=576702&r1=576701&r2=576702&view=diff
==============================================================================
---
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/assembly/bin.xml
(original)
+++
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/assembly/bin.xml
Mon Sep 17 22:19:36 2007
@@ -32,18 +32,8 @@
<outputDirectory>/</outputDirectory>
<includes>
<include>README.txt</include>
- </includes>
- </fileSet>
- <fileSet>
- <!-- TODO: There're two ways to leverage MRRP:
- - o the one below
- - o pom.xml where MRRP is configured to output the files in the
directory of our choice
- -->
- <directory>target/maven-shared-archive-resources/META-INF</directory>
- <outputDirectory>/</outputDirectory>
- <includes>
- <include>LICENSE</include>
- <include>NOTICE</include>
+ <include>NOTICE.txt</include>
+ <include>LICENSE.txt</include>
</includes>
</fileSet>
<fileSet>
Modified:
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/conf/README.txt
URL:
http://svn.apache.org/viewvc/openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/conf/README.txt?rev=576702&r1=576701&r2=576702&view=diff
==============================================================================
---
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/conf/README.txt
(original)
+++
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/conf/README.txt
Mon Sep 17 22:19:36 2007
@@ -16,7 +16,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- OpenEJB 3.0.0 Configuration Directory Documentation
+ OpenEJB 3.0 Configuration Directory Documentation
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
@@ -92,7 +92,7 @@
Such as:
- <Resource id="MyDataSource">
+ <Resource id="MyDataSource" type="DataSource">
username foo
password bar
</Resource>
@@ -101,7 +101,7 @@
properties file (along with semi-colon). So the above is equivalent
to:
- <Resource id="MyDataSource">
+ <Resource id="MyDataSource" type="DataSource">
username = foo
password = bar
</Resource>
@@ -122,7 +122,7 @@
purposes. It is safe to delete them and be assured that no behavior
will change if a smaller config file is desired.
- CATELOG OF ALL PROPERTIES
+ CATALOG OF ALL PROPERTIES
To know what properties can be overriden the './bin/openejb
properties' command is very useful: see
Modified:
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/resources/README.txt
URL:
http://svn.apache.org/viewvc/openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/resources/README.txt?rev=576702&r1=576701&r2=576702&view=diff
==============================================================================
---
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/resources/README.txt
(original)
+++
openejb/branches/3.0-beta-1/assembly/openejb-standalone/src/main/resources/README.txt
Mon Sep 17 22:19:36 2007
@@ -29,37 +29,26 @@
Now all you need to do is to type:
- openejb help
+ openejb --help
For Windows users, that looks like this:
- C:\openejb> openejb help
+ C:\openejb> openejb --help
For UNIX/Linux/Mac OS X users, that looks like this:
- [EMAIL PROTECTED] openejb]# openejb help
+ [EMAIL PROTECTED] openejb]# openejb --help
You really only need to know two commands to use OpenEJB, deploy
and start. Both are completely documented and have examples.
For help information and command options, try this:
- openejb deploy -help
- openejb start -help
+ openejb deploy --help
+ openejb start --help
- For examples on using the command and options, try this:
-
- openejb deploy -examples
- openejb start -examples
That's it!
-
-___________________
-Documentation
-===================
-
- The initial versions of the documentation for this release
- are in the directory docs/html, see file docs/html/index.html
___________________
Support