Skip to main content
summaryrefslogtreecommitdiffstats
blob: f43328dc2d7eda8f3630f890df028e6a7600e80c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#######################################################################################
# Dali dependencies.properties
# A dependency is identied by:
# groupId: a simple component name that adheres to java 
#           variable naming conventions. e.g. wtp
# url:  Url to a remote repository that can be used by a 
#       http GET request to download the library 
#       to a local cache repository. URL should not include the file.
#       See the next description for the file
# file: Name of the library that is used.  If the library is platform dependent
#       it must have suffixes such as: file.linux.gtk.x86
#       These suffixes are the same as those useb by releng baseos,basews,basearch
#            baseos= linux or win32
#            basews= gtk or win32
#            basearch=x86
# name:  A short user readable name for the library.
# description:  One line description for the library.
# autodownload: [optional] default true.  Set this to false if the file cannot be
#                downloaded automatically (i.e. requies license accept click through).
#                If autodownload is false, and the library is not avaialbe in the local
#                repository (cache).  User must download the library and copy it into
#                the local repository. 
# releng.url: [optional] Copies the original to a releng repository.  Useful for libraries
#                        that can get deleted from their original URLs.  Releng will use
#                        the local cache, original url, releng.url in that order to get the
#                        the dependency.  If a releng.url is not provided, the library will
#                        always be requested from itrs original site.
# 
# Example:
# wtp.url  = http://download.eclipse.org/webtools/downloads/drops/R-0.7-200507290654
# wtp.file = wtp-sdk-0.7.zip
# wtp.name = WTP 0.7 SDK
# wtp.description = WTP 0.7 SDK distribution
#######################################################################################

#######################################################################################
# Web Tools Platform (WTP) Dependency
# WTP bundle zip to be downloaded
# WTP SDK will be used for building the distribution
# groupID : wtp
#wtp.url  = http://download.eclipse.org/webtools/downloads/drops/R2.0/S-2.0M6-200704060120
#wtp.file = wtp-sdk-S-2.0M6-200704060120.zip
#wtp.name = WTP sdk v2.0 S-2.0M6-200704060120
#wtp.description = WTP sdk bundle v2.0 S-2.0M6-200704060120
wtp.url  = http://download.eclipse.org/webtools/committers/drops/R3.0/I-I200708162051-200708162051
wtp.file = wtp-sdk-I-I200708162051-200708162051.zip
wtp.name = WTP sdk v3.0 I-I200708162051-200708162051
wtp.description = WTP sdk bundle v3.0 I-I200708162051-200708162051
#######################################################################################

Back to the top