Examples of LibAlias


Examples of org.jnode.build.AbstractPluginTask.LibAlias

               
                path.createPathElement().setLocation(userJar);
                               
                // create the lib alias
                final String alias = pluginId + ".jar";
                LibAlias libAlias = task.createLibAlias();
                libAlias.setName(alias);
                libAlias.setAlias(userJar);
                               
                final File descriptorFile = new File(userJar.getParent(), pluginDesc);
                if (!descriptorFile.exists()) {
                    // build the descriptor from scratch
                    buildDescriptor(userJar, descriptorFile, pluginId, alias);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.