• Intro Headers Instructions Macros Commands
Fork me on GitHub
    • Introduction
    • How to install bnd
    • Guided Tour
    • Guided Tour Workspace & Projects
    • Concepts
    • Best practices
    • Build
    • Project Setup
    • Generating JARs
    • Versioning
    • Baselining
    • Service Components
    • Metatype
    • Contracts
    • Bundle Annotations
    • Accessor Properties
    • SPI Annotations
    • Resolving Dependencies
    • Launching
    • Startlevels
    • Testing
    • Testing with Launchpad
    • Packaging Applications
    • JPMS Libraries
    • Wrapping Libraries to OSGi Bundles
    • Generating Documentation
    • Commands
    • For Developers
    • Tips for Windows users
    • Tools bound to bnd
    • Reference
    • Headers
    • Instruction Reference
    • Instruction Index
    • Macro Reference
    • Macro Index
    • Plugins
    • External Plugins
    • Settings
    • Errors
    • Warnings
    • Frequently Asked Questions
  • -wablib FILE ( ',' FILE )*
    Builder

    /**
     * Turn this normal bundle in a web and add any resources.
     *
     * @throws Exception
     */
    private Jar doWab(Jar dot) throws Exception {
    	String wab = getProperty(WAB);
    	String wablib = getProperty(WABLIB);
    	if (wab == null && wablib == null)
    		return dot;
    
    	trace("wab %s %s", wab, wablib);
    	setBundleClasspath(append("WEB-INF/classes", getProperty(BUNDLE_CLASSPATH)));
    
    	Set<String> paths = new HashSet<String>(dot.getResources().keySet());
    
    	for (String path : paths) {
    		if (path.indexOf('/') > 0 && !Character.isUpperCase(path.charAt(0))) {
    			trace("wab: moving: %s", path);
    			dot.rename(path, "WEB-INF/classes/" + path);
    		}
    	}
    
    	Parameters clauses = parseHeader(getProperty(WABLIB));
    	for (String key : clauses.keySet()) {
    		File f = getFile(key);
    		addWabLib(dot, f);
    	}
    	doIncludeResource(dot, wab);
    	return dot;
    }
    
    • GitHub