moto web application
Revision | a49651e6d76a8c494f26c4fbf458dd513cf43de0 (tree) |
---|---|
Time | 2014-01-27 12:17:53 |
Author | astoria-d <astoria-d@mail...> |
Commiter | astoria-d |
richfaces build integration minor update
@@ -5,3 +5,4 @@ this-proj-is-jsf2.0-named-annotation.txt | ||
5 | 5 | data-source-memo.txt |
6 | 6 | aaa.txt |
7 | 7 | jboss.cmd-shortcut.lnk |
8 | +shell-start.bat |
@@ -25,8 +25,9 @@ | ||
25 | 25 | <property name="inject" value="${env.JBOSS_HOME}\modules\javax\inject\api\main\javax.inject-1.jar"/> |
26 | 26 | <property name="servlet" value="${env.JBOSS_HOME}\modules\javax\servlet\api\main\jboss-servlet-api_3.0_spec-1.0.0.Final.jar"/> |
27 | 27 | <property name="cdi" value="${env.JBOSS_HOME}\modules\javax\enterprise\api\main\cdi-api-1.0-SP4.jar"/> |
28 | - <property name="richfaces" value="${lib}\richfaces-components-api-4.3.4.Final.jar:${lib}\richfaces-components-ui-4.3.4.Final.jar:${lib}\richfaces-core-api-4.3.4.Final.jar:${lib}\richfaces-core-impl-4.3.4.Final.jar"/> | |
29 | 28 | <property name="jms" value="${env.JBOSS_HOME}\modules\javax\jms\api\main\jboss-jms-api_1.1_spec-1.0.0.Final.jar"/> |
29 | + <property name="richfaces-lib" value="${lib}"/> | |
30 | + <property name="richfaces-jar" value="richfaces-*.jar"/> | |
30 | 31 | |
31 | 32 | <target name="clean"> |
32 | 33 | <!-- Delete our the ${build} and ${dist} directory trees --> |
@@ -47,9 +48,20 @@ | ||
47 | 48 | <javac |
48 | 49 | srcdir="${javasrc}" |
49 | 50 | destdir="${build}" |
50 | - debug="true" | |
51 | - classpath="${jsf}:${inject}:${servlet}:${cdi}:${richfaces}:${jms}"/> | |
51 | + debug="true"> | |
52 | 52 | |
53 | + <classpath> | |
54 | + <pathelement path="${jsf}" /> | |
55 | + <pathelement path="${inject}" /> | |
56 | + <pathelement path="${servlet}" /> | |
57 | + <pathelement path="${cdi}" /> | |
58 | + <pathelement path="${jms}" /> | |
59 | + <pathelement path="${richfaces}" /> | |
60 | + <fileset dir="${richfaces-lib}"> | |
61 | + <include name="${richfaces-jar}"/> | |
62 | + </fileset> | |
63 | + </classpath> | |
64 | + </javac> | |
53 | 65 | </target> |
54 | 66 | |
55 | 67 | <target name="dist" depends="compile"> |