Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4966c04aa7b7beb230d7a734763223ef4d25a202 (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
50
51
52
53
54
###############################################################################
# Copyright (c) 2003, 2005 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
# 
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################
bin.includes = .options,\
               plugin.properties,\
               plugin.xml,\
               *.jar,\
               about.html,\
               eclipse.properties,\
               META-INF/,\
               systembundle.properties,\
               *.profile
src.includes=about.html
###############################################################################
# The following configuration splits the framework code into the most
# fine grain set of jars
#
# jars.compile.order = osgi.jar, core.jar, resolver.jar, defaultAdaptor.jar, eclipseAdaptor.jar, console.jar
#
# source.osgi.jar = osgi/src
# source.core.jar = core/adaptor/, core/framework/
# source.defaultAdaptor.jar = defaultAdaptor/src/
# source.eclipseAdaptor.jar = eclipseAdaptor/src/
# source.console.jar = console/src/
# source.resolver.jar = resolver/src/
###############################################################################

###############################################################################
# The following configuration splits the framework code into less code jars
# the minimal set of code to run a standalone OSGi framework is combined into 
# core.jar.  Additional functionality needed by eclipse is contained in
# eclispeAdaptor.jar.  The OSGi console implementation is contained in console.jar
#
jars.compile.order = core.jar, eclipseAdaptor.jar, console.jar

source.core.jar = osgi/src, core/adaptor/, core/framework/, resolver/src/, defaultAdaptor/src/
source.eclipseAdaptor.jar = eclipseAdaptor/src/
source.console.jar = console/src/
###############################################################################

###############################################################################
# The following configuration combines the framework into one core.jar
#
# jars.compile.order = core.jar
#
# source.core.jar = osgi/src, core/adaptor/, core/framework/, resolver/src/, defaultAdaptor/src/, eclipseAdaptor/src/, console/src/
###############################################################################

Back to the top