[jboss-cvs] jboss-seam/seam-gen ...
Gavin King
gavin.king at jboss.com
Thu Nov 2 16:10:51 EST 2006
User: gavin
Date: 06/11/02 16:10:51
Modified: seam-gen README build-project-setup.xml build.xml
seam.bat seam.sh
Log:
remove bpm stuff, there is no such thing as a bpm action in seam
Revision Changes Path
1.5 +0 -6 jboss-seam/seam-gen/README
(In the diff below, changes in quantity of whitespace are not shown.)
Index: README
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/README,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- README 2 Nov 2006 20:35:32 -0000 1.4
+++ README 2 Nov 2006 21:10:51 -0000 1.5
@@ -54,12 +54,6 @@
Example: seam new-page [PROJECT NAME] [PAGE NAME]
- new-bpm-action
- Create a new POJO that implements jBPM's ActionHandler interface.
- This action class can be bound to a jBPM business process.
-
- Example: seam new-bpm-action [PROJECT NAME] [BPM ACTION NAME]
-
new-entity
Create a new EJB3 entity bean with key Seam/EJB3 annotations
and a couple stub attributes (column1, column2).
1.3 +0 -2 jboss-seam/seam-gen/build-project-setup.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build-project-setup.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-project-setup.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- build-project-setup.xml 2 Nov 2006 20:36:26 -0000 1.2
+++ build-project-setup.xml 2 Nov 2006 21:10:51 -0000 1.3
@@ -8,7 +8,6 @@
<input addproperty="jboss.home" message="Enter your jboss home directory:" />
<input addproperty="action.package" message="Enter java package name for your business logic:" />
<input addproperty="model.package" message="Enter java package name for your model objects:" />
- <input addproperty="bpm.package" message="Enter java package name for your BPM objects:" />
<input addproperty="mdb.package" message="Enter java package name for your MDB objects:" />
<input addproperty="test.package" message="Enter java package name for your test cases:" />
<java classname="org.jboss.seam.tool.SeamGenCommandLine">
@@ -18,7 +17,6 @@
<arg value="${action.package}" />
<arg value="${model.package}" />
<arg value="${test.package}" />
- <arg value="${bpm.package}" />
<arg value="${mdb.package}" />
<arg value="${eclipse.wtp}" />
<classpath>
1.9 +0 -13 jboss-seam/seam-gen/build.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- build.xml 2 Nov 2006 20:37:45 -0000 1.8
+++ build.xml 2 Nov 2006 21:10:51 -0000 1.9
@@ -247,19 +247,6 @@
</java>
</target>
- <target name="new-bpm-action">
- <echo message="Create a new jBPM action class that implements ActionHandler" />
- <java classname="org.jboss.seam.tool.SeamGenCommandLine">
- <arg value="new-bpm-action" />
- <arg value="${project.name}" />
- <arg value="${action.name}" />
- <classpath>
- <pathelement location="../lib/freemarker.jar" />
- <pathelement path="../jboss-seam-gen.jar" />
- </classpath>
- </java>
- </target>
-
<target name="new-entity">
<echo message="Create a new entity bean with a couple attributes" />
<java classname="org.jboss.seam.tool.SeamGenCommandLine">
1.4 +0 -2 jboss-seam/seam-gen/seam.bat
(In the diff below, changes in quantity of whitespace are not shown.)
Index: seam.bat
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/seam.bat,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- seam.bat 2 Nov 2006 20:35:19 -0000 1.3
+++ seam.bat 2 Nov 2006 21:10:51 -0000 1.4
@@ -25,8 +25,6 @@
if %SEAMTASK% == new-conversation ant new-conversation -Dproject.name=%PROJECTNAME% -Daction.name=%TASKINPUT% -Dpage.name=%TASKINPUT2%
-if %SEAMTASK% == new-bpm-action ant new-bpm-action -Dproject.name=%PROJECTNAME% -Daction.name=%TASKINPUT%
-
if %SEAMTASK% == new-entity ant new-entity -Dproject.name=%PROJECTNAME% -Daction.name=%TASKINPUT%
if %SEAMTASK% == new-mdb ant new-mdb -Dproject.name=%PROJECTNAME% -Daction.name=%TASKINPUT%
1.4 +0 -5 jboss-seam/seam-gen/seam.sh
(In the diff below, changes in quantity of whitespace are not shown.)
Index: seam.sh
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/seam.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- seam.sh 2 Nov 2006 20:35:19 -0000 1.3
+++ seam.sh 2 Nov 2006 21:10:51 -0000 1.4
@@ -40,11 +40,6 @@
ant new-conversation -Dproject.name=${projectname} -Dconversation.name=${taskinput} -Dpage.name=${taskinput2}
fi
-if [ "${seamtask}" = new-bpm-action ]
- then
- ant new-bpm-action -Dproject.name=${projectname} -Daction.name=${taskinput}
-fi
-
if [ "${seamtask}" = new-entity ]
then
ant new-entity -Dproject.name=${projectname} -Daction.name=${taskinput}
More information about the jboss-cvs-commits
mailing list