• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

moto web application


Commit MetaInfo

Revisiona49651e6d76a8c494f26c4fbf458dd513cf43de0 (tree)
Time2014-01-27 12:17:53
Authorastoria-d <astoria-d@mail...>
Commiterastoria-d

Log Message

richfaces build integration minor update

Change Summary

Incremental Difference

--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ this-proj-is-jsf2.0-named-annotation.txt
55 data-source-memo.txt
66 aaa.txt
77 jboss.cmd-shortcut.lnk
8+shell-start.bat
--- a/build.xml
+++ b/build.xml
@@ -25,8 +25,9 @@
2525 <property name="inject" value="${env.JBOSS_HOME}\modules\javax\inject\api\main\javax.inject-1.jar"/>
2626 <property name="servlet" value="${env.JBOSS_HOME}\modules\javax\servlet\api\main\jboss-servlet-api_3.0_spec-1.0.0.Final.jar"/>
2727 <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"/>
2928 <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"/>
3031
3132 <target name="clean">
3233 <!-- Delete our the ${build} and ${dist} directory trees -->
@@ -47,9 +48,20 @@
4748 <javac
4849 srcdir="${javasrc}"
4950 destdir="${build}"
50- debug="true"
51- classpath="${jsf}:${inject}:${servlet}:${cdi}:${richfaces}:${jms}"/>
51+ debug="true">
5252
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>
5365 </target>
5466
5567 <target name="dist" depends="compile">