Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.0
-
Fix Version/s: 2.0.1
-
Component/s: Sample Apps
-
Labels:None
-
Environment:Samples
Description
Extend the sample build system to add the possibility to include additional libraries specific to a sample. This should let samples to include additional .jar files not located in the general library location.
Issue Links
- duplicates
-
ICE-6488
Add the possibility for application specific jars to the build system
-
- Closed
-
Activity
| Repository | Revision | Date | User | Message |
| ICEsoft Public SVN Repository | #23896 | Thu Feb 03 13:35:42 MST 2011 | jack.van.ooststroom | Fixed JIRA |
| Files Changed | ||||
MODIFY
/icefaces2/trunk/icefaces/samples/build/common.xml
|
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Jack van Ooststroom [ jack.van.ooststroom ] |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Fixed [ 1 ] |
| Salesforce Case | [] | |
| Fix Version/s | 2.0.1 [ 10255 ] |
| Status | Resolved [ 5 ] | Closed [ 6 ] |

In order to add additional libraries add something like the following to the sample's build.xml:
<property name="lib.application.dir" location="[lib.dir]" />
<property name="lib.compile.application.includes" value="[lib1.jar] [lib2.jar] [lib3.jar]" />
<property name="lib.distribute.application.includes" value="[lib1.jar]" />
By default the samples/build/common.xml defines the following:
<property name="lib.application.dir" location="./lib"/>
<property name="lib.compile.application.includes" value=""/>
<property name="lib.distribute.application.includes" value=""/>
Marking this one as FIXED.