Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Headless build problem in
Headless build problem in [message #668630] Fri, 06 May 2011 14:01 Go to next message
Mikael Petterson is currently offline Mikael PettersonFriend
Messages: 158
Registered: July 2009
Senior Member
Hi,

I am trying to do a headless build of our eclipse plugin. It does all the copying correct and compiles classes.

But it seems to be something with the packaging. I cannot figure it out.

Any ideas?

br,

//mike


build.properties:
=============
###############################################################################
# Copyright (c) 2003, 2009 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
###############################################################################
#####################
# Parameters describing how and where to execute the build.
# Typical users need only update the following properties:
#    baseLocation - where things you are building against are installed
#    bootclasspath - The base jars to compile against (typicaly rt.jar)
#    configs - the list of {os, ws, arch} configurations to build.  
#
# Of course any of the settings here can be overridden by spec'ing 
# them on the command line (e.g., -DbaseLocation=d:/eclipse

eclipseLocation=C:/eclipse-java-helios-SR1-win32/eclipse

#The type of the top level element we are building,  generally "feature"
topLevelElementType = feature
#The id of the top level element we are building
topLevelElementId = 

############# PRODUCT/PACKAGING CONTROL #############
#product=/net.sourceforge.eclipseccase/helloworld.product //mike: Since we are not using an RCP product.
runPackager=true

#Set the name of the archive that will result from the product build.
#archiveNamePrefix=

# The prefix that will be used in the generated archive.
archivePrefix=eclipseccase

# The location underwhich all of the build output will be collected.
collectingFolder=${archivePrefix}

# The list of {os, ws, arch} configurations to build.  This 
# value is a '&' separated list of ',' separate triples.  For example, 
#     configs=win32,win32,x86 & linux,motif,x86
# By default the value is *,*,*
configs = *, *, *
#configs=win32, win32, x86
# & \
#	win32,win32,x86_64 & \
#	win32,win32,wpf & \
#	linux, gtk, ppc & \
#	linux, gtk, x86 & \
#	linux, gtk, x86_64 & \
#	linux, motif, x86 & \
#	solaris, motif, sparc & \
#	solaris, gtk, sparc & \
#	aix, motif, ppc & \
#	hpux, motif, ia64_32 & \
#	macosx, carbon, ppc & \
#	macosx, carbon, x86 & \
#	macosx, cocoa, ppc & \
#	macosx, cocoa, x86 & \
#	macosx, cocoa, x86_64

# By default PDE creates one archive (result) per entry listed in the configs property.
# Setting this value to true will cause PDE to only create one output containing all 
# artifacts for all the platforms listed in the configs property.
# To control the output format for the group, add a "group, group, group - <format>" entry to the
# archivesFormat. 
#groupConfigurations=true

#The format of the archive. By default a zip is created using antZip.
#The list can only contain the configuration for which the desired format is different than zip.
#archivesFormat=win32, win32, x86 - antZip& \
#	linux, gtk, ppc - antZip &\
#    linux, gtk, x86 - antZip& \
#	linux, gtk, x86_64 - antZip& \
# linux, motif, x86 - antZip& \
#	solaris, motif, sparc - antZip& \
#	solaris, gtk, sparc - antZip& \
#	aix, motif, ppc - antZip& \
#	hpux, motif, PA_RISC - antZip& \
#	macosx, carbon, ppc - antZip

#Allow cycles involving at most one bundle that needs to be compiled with the rest being binary bundles.
allowBinaryCycles = true

#Sort bundles depenedencies across all features instead of just within a given feature.
#flattenDependencies = true

#Parallel compilation, requires flattenedDependencies=true
#parallelCompilation=true
#parallelThreadCount=
#parallelThreadsPerProcessor=
	
#Set to true if you want the output to be ready for an update jar (no site.xml generated)
#outputUpdateJars = false

#Set to true for Jnlp generation
#codebase should be a URL that will be used as the root of all relative URLs in the output.
#generateJnlp=false
#jnlp.codebase=<codebase url>
#jnlp.j2se=<j2se version>
#jnlp.locale=<a locale>
#jnlp.generateOfflineAllowed=true or false generate <offlineAllowed/> attribute in the generated features
#jnlp.configs=${configs}			#uncomment to filter the content of the generated jnlp files based on the configuration being built

#Set to true if you want to sign jars
#signJars=false
#sign.alias=<alias>
#sign.keystore=<keystore location>
#sign.storepass=<keystore password>
#sign.keypass=<key password>

#Arguments to send to the zip executable
zipargs=

#Arguments to send to the tar executable
tarargs=

#Control the creation of a file containing the version included in each configuration - on by default 
#generateVersionsLists=false

############## BUILD NAMING CONTROL ################
# The directory into which the build elements are fetched and where
# the build takes place.
buildDirectory=${user.home}/eclipse.build

# Type of build.  Used in naming the build output.  Typically this value is
# one of I, N, M, S, ...
buildType=I

# ID of the build.  Used in naming the build output.
buildId=HelloWorld

# Label for the build.  Used in naming the build output
buildLabel=${buildType}.${buildId}

# Timestamp for the build.  Used in naming the build output
timestamp=007

#The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde.
#The value will only be applied to plugin or features indicating build.properties, qualifier = context 
#forceContextQualifier=<the value for the qualifier>

#Enable / disable the generation of a suffix for the features that use .qualifier. 
#The generated suffix is computed according to the content of the feature   
#generateFeatureVersionSuffix=true

############# BASE CONTROL #############
# Settings for the base Eclipse components and Java class libraries 
# against which you are building.
# Base location for anything the build needs to compile against.  For example,
# in most RCP app or a plug-in,  the baseLocation should be the location of a previously
# installed Eclipse against which the application or plug-in code will be compiled and the RCP delta pack.

base=c:/net.sourceforge.eclipseccase-base
baseLocation=${base}/target/eclipse

#Folder containing repositories whose content is needed to compile against
repoBaseLocation=${base}/repos
#Folder where the content of the repositories from ${repoBaseLocation} will be made available as a form suitable to be compiled against
transformedRepoLocation=${buildDirectory}/transformedRepos

#Os/Ws/Arch/nl of the eclipse specified by baseLocation
baseos=win32
basews=win32
basearch=x86

#this property indicates whether you want the set of plug-ins and features to be considered during the build to be limited to the ones reachable from the features / plugins being built
filteredDependencyCheck=false

#this property indicates whether the resolution should be done in development mode (i.e. ignore multiple bundles with singletons)
resolution.devMode=false

#pluginPath is a list of locations in which to find plugins and features.  This list is separated by the platform file separator (; or :)
#a location is one of:  
#- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo
#- a directory that contains a /plugins or /features subdirectory
#- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
#pluginPath=

skipBase=true
eclipseURL=<url for eclipse download site>
eclipseBuildId=<Id of Eclipse build to get>
eclipseBaseURL=${eclipseURL}/eclipse-platform-${eclipseBuildId}-win32.zip


############# MAP FILE CONTROL ################
# This section defines CVS tags to use when fetching the map files from the repository.
# If you want to fetch the map file from repository / location, change the getMapFiles target in the customTargets.xml

skipMaps=true
mapsRepo=:pserver:anonymous@example.com/path/to/repo
mapsRoot=path/to/maps
mapsCheckoutTag=HEAD

#tagMaps=true
mapsTagTag=v${buildId}


############ REPOSITORY CONTROL ###############
# This section defines properties parameterizing the repositories where plugins, fragments
# bundles and features are being obtained from. 

# The tags to use when fetching elements to build.
# By default thebuilder will use whatever is in the maps.  
# This value takes the form of a comma separated list of repository identifier (like used in the map files) and the 
# overriding value
# For example fetchTag=CVS=HEAD, SVN=v20050101
# fetchTag=HEAD
skipFetch=true


############# JAVA COMPILER OPTIONS ##############
# The location of the Java jars to compile against.  Typically the rt.jar for your JDK/JRE
#bootclasspath=${java.home}/lib/rt.jar

# specific JRE locations to compile against. These values are used to compile bundles specifying a 
# Bundle-RequiredExecutionEnvironment. Uncomment and set values for environments that you support
#CDC-1.0/Foundation-1.0= /path/to/rt.jar
#CDC-1.1/Foundation-1.1=
#OSGi/Minimum-1.0=
#OSGi/Minimum-1.1=
#JRE-1.1=
#J2SE-1.2=
#J2SE-1.3=
#J2SE-1.4=
#J2SE-1.5=
#JavaSE-1.6=
#PersonalJava-1.1=
#PersonalJava-1.2=
#CDC-1.0/PersonalBasis-1.0=
#CDC-1.0/PersonalJava-1.0=
#CDC-1.1/PersonalBasis-1.1=
#CDC-1.1/PersonalJava-1.1=

# Specify the output format of the compiler log when eclipse jdt is used
logExtension=.log

# Whether or not to include debug info in the output jars
javacDebugInfo=false 

# Whether or not to fail the build if there are compiler errors
javacFailOnError=true

# Enable or disable verbose mode of the compiler
javacVerbose=true

# Extra arguments for the compiler. These are specific to the java compiler being used.
#compilerArg=

# Default value for the version of the source code. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacSource in build.properties
javacSource=1.5

# Default value for the version of the byte code targeted. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacTarget in build.properties.
javacTarget=1.5




Build log:
=======

Buildfile: C:\Users\mike\opensource\net.sourceforge.eclipseccase.build\build.xml
clean:
   [delete] Deleting directory C:\Users\mike\eclipse.build
init:
    [mkdir] Created dir: C:\Users\mike\eclipse.build
    [mkdir] Created dir: C:\Users\mike\eclipse.build\plugins
    [mkdir] Created dir: C:\Users\mike\eclipse.build\features
     [copy] Copying 642 files to C:\Users\mike\eclipse.build\plugins
     [copy] Copying 11 files to C:\Users\mike\eclipse.build\features
pde-build:
     [java] Buildfile: C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823/scripts/productBuild/productBuild.xml
     [java] main:
     [java] preBuild:
     [java] preSetup:
     [java] checkLocalMaps:
     [java] getMapFiles:
     [java] postSetup:
     [java] checkLocalBase:
     [java] getBaseComponents:
     [java] processRepos:
     [java] preProcessRepos:
     [java] allElements:
     [java] allElementsDelegator:
     [java] transformRepos:
     [java] postProcessRepos:
     [java] generateFeature:
     [java] fetch:
     [java] generateFeature:
     [java] [eclipse.generateFeature] Some inter-plug-in dependencies have not been satisfied.
     [java] [eclipse.generateFeature] Bundle net.sourceforge.eclipseccase:
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.core.resources_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.team.core_0.0.0.
     [java] [eclipse.generateFeature] Bundle net.sourceforge.eclipseccase.ui:
     [java] [eclipse.generateFeature] 	Missing required plug-in net.sourceforge.eclipseccase_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.ui.ide_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.team.ui_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.ui.console_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.ui.forms_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.compare_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.core.resources_0.0.0.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.hpux.ia64_32:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.linux.ppc:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.linux.x86:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.linux.x86_64:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.macosx:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.solaris.sparc:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.win32.x86:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.net.linux.x86:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.net_1.1.0 has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.net.win32.x86:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.net_1.1.0 has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.core.resources.win32.x86:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.core.resources_[3.4.0,3.5.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.equinox.launcher.win32.win32.x86:
     [java] [eclipse.generateFeature] Bundle org.eclipse.equinox.security.macosx:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.equinox.security_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.equinox.security.win32.x86:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.equinox.security_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.jdt.launching.macosx:
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.core.resources_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.debug.core_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.jdt.debug_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.jdt.core_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.jdt.launching_0.0.0.
     [java] [eclipse.generateFeature] 	Missing required plug-in org.eclipse.jdt.ui_0.0.0.
     [java] [eclipse.generateFeature] Bundle org.eclipse.swt.win32.win32.x86:
     [java] [eclipse.generateFeature] Bundle org.eclipse.ui.win32:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.ui.ide_[3.2.0,4.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.update.core.linux:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.update.core_[3.0.0,4.0.0) has not been found.
     [java] [eclipse.generateFeature] Bundle org.eclipse.update.core.win32:
     [java] [eclipse.generateFeature] 	Host plug-in org.eclipse.update.core_[3.0.0,4.0.0) has not been found.
     [java] generate:
     [java] preGenerate:
     [java] allElements:
     [java] allElementsDelegator:
     [java] init:
     [java] generateScript:
     [java] [eclipse.buildScript] Some inter-plug-in dependencies have not been satisfied.
     [java] [eclipse.buildScript] Bundle net.sourceforge.eclipseccase:
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.core.resources_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.team.core_0.0.0.
     [java] [eclipse.buildScript] Bundle net.sourceforge.eclipseccase.ui:
     [java] [eclipse.buildScript] 	Missing required plug-in net.sourceforge.eclipseccase_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.ui.ide_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.team.ui_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.ui.console_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.ui.forms_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.compare_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.core.resources_0.0.0.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.hpux.ia64_32:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.linux.ppc:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.linux.x86:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.linux.x86_64:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.macosx:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.solaris.sparc:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.win32.x86:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.filesystem_[1.1.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.net.linux.x86:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.net_1.1.0 has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.net.win32.x86:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.net_1.1.0 has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.core.resources.win32.x86:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.core.resources_[3.4.0,3.5.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.equinox.launcher.win32.win32.x86:
     [java] [eclipse.buildScript] Bundle org.eclipse.equinox.security.macosx:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.equinox.security_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.equinox.security.win32.x86:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.equinox.security_[1.0.0,2.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.jdt.launching.macosx:
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.core.resources_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.debug.core_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.jdt.debug_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.jdt.core_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.jdt.launching_0.0.0.
     [java] [eclipse.buildScript] 	Missing required plug-in org.eclipse.jdt.ui_0.0.0.
     [java] [eclipse.buildScript] Bundle org.eclipse.swt.win32.win32.x86:
     [java] [eclipse.buildScript] Bundle org.eclipse.ui.win32:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.ui.ide_[3.2.0,4.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.update.core.linux:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.update.core_[3.0.0,4.0.0) has not been found.
     [java] [eclipse.buildScript] Bundle org.eclipse.update.core.win32:
     [java] [eclipse.buildScript] 	Host plug-in org.eclipse.update.core_[3.0.0,4.0.0) has not been found.
     [java] postGenerate:
     [java] clean:
     [java] allElements:
     [java] allElementsDelegator:
     [java] init:
     [java] cleanElement:
     [java]      [echo] C:\Users\mike/eclipse.build/features/org.eclipse.pde.build.container.feature
     [java] init:
     [java] clean:
     [java] init:
     [java] all.features:
     [java] init:
     [java] clean:
     [java] all.plugins:
     [java] update.feature:
     [java] all.children:
     [java] process:
     [java] preProcess:
     [java] allElements:
     [java] allElementsDelegator:
     [java] init:
     [java] processElement:
     [java] processViaFeature:
     [java] init:
     [java] build.jars:
     [java] init:
     [java] all.features:
     [java] init:
     [java] build.jars:
     [java] all.plugins:
     [java] update.feature:
     [java] all.children:
     [java] processFlat:
     [java] postProcess:
     [java] assemble:
     [java] preAssemble:
     [java] allElements:
     [java] allElementsDelegator:
     [java] init:
     [java] assembleElement:
     [java] main:
     [java] defaultAssemble:
     [java] main:
     [java]     [mkdir] Created dir: C:\Users\mike\eclipse.build\I.HelloWorld
     [java]     [mkdir] Created dir: C:\Users\mike\eclipse.build\tmp
     [java] gather.bin.parts:
     [java] init:
     [java] gather.bin.parts:
     [java]    [subant] Failure for target 'rootFiles*_*_*' of: C:\net.sourceforge.eclipseccase-base\target\eclipse\features\org.eclipse.equinox.executable_3.3.101.R34x_v20080805-7H-ELeE8hXnkE15Wh9Rz0yu\build.xml
     [java]    [subant] The following error occurred while executing this line:
     [java]    [subant] Target "rootFiles*_*_*" does not exist in the project "org.eclipse.platform.launchers". 
     [java] customAssembly:
     [java] customAssembly:
     [java] jar.processing:
     [java] customAssembly:
     [java] generate.p2.metadata:
     [java] assemble.archive:
     [java] customAssembly:
     [java] BUILD FAILED
     [java] C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823\scripts\productBuild\productBuild.xml:44: The following error occurred while executing this line:
     [java] C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823\scripts\build.xml:118: The following error occurred while executing this line:
     [java] C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823\templates\headless-build\customTargets.xml:12: The following error occurred while executing this line:
     [java] C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823\scripts\productBuild\allElements.xml:20: The following error occurred while executing this line:
     [java] C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823\scripts\genericTargets.xml:186: The following error occurred while executing this line:
     [java] C:\Users\mike\eclipse.build\assemble.org.eclipse.pde.build.container.feature.all.xml:25: The following error occurred while executing this line:
     [java] C:\Users\mike\eclipse.build\assemble.org.eclipse.pde.build.container.feature.all.xml:15: The following error occurred while executing this line:
     [java] C:\eclipse-java-helios-SR1-win32\eclipse\plugins\org.eclipse.pde.build_3.6.1.R36x_v20100823\scripts\productBuild\allElements.xml:35: The following error occurred while executing this line:
     [java] C:\Users\mike\eclipse.build\assemble.org.eclipse.pde.build.container.feature.xml:99: The following error occurred while executing this line:
     [java] C:\Users\mike\eclipse.build\assemble.org.eclipse.pde.build.container.feature.xml:118: C:\Users\mike\eclipse.build\tmp\eclipseccase\ANY.ANY.ANY\eclipseccase not found.
     [java] Total time: 14 seconds
     [java] An error has occurred. See the log file
     [java] C:\Users\mike\workspace\.metadata\.log.

BUILD FAILED
C:\Users\mike\opensource\net.sourceforge.eclipseccase.build\build.xml:73: Java returned: 13

Total time: 32 seconds
Re: Headless build problem in [message #669476 is a reply to message #668630] Tue, 10 May 2011 13:29 Go to previous messageGo to next message
sivasankarir is currently offline sivasankarirFriend
Messages: 7
Registered: April 2011
Junior Member
Hi,

Can you mention the eclipse version you are using? And the platform in which you are trying to build?

I feel its always better to be platform specific when you go in for headless build. I can see that the configs value in your properties file is "configs=*,*,*". Try changing it to appropriate value and build your product. For example, I use "configs=win32, win32, x86" for building my product in 32-bit windows machine.
Re: Headless build problem in [message #669739 is a reply to message #669476] Wed, 11 May 2011 10:31 Go to previous message
Martin Skorsky is currently offline Martin SkorskyFriend
Messages: 112
Registered: July 2009
Senior Member
Hi,

in your build.properties I saw:
# The prefix that will be used in the generated archive.
archivePrefix=eclipseccase

For the archived update site it is easier to leave the prefix empty:
archivePrefix=

HTH
Martin
Previous Topic:RetargetTextEditorAction uncertainty
Next Topic:Plugin user confuguration
Goto Forum:
  


Current Time: Thu Apr 25 16:24:55 GMT 2024

Powered by FUDForum. Page generated in 0.04325 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top