Package com.alibaba.citrus.maven.eclipse.base.eclipse

Examples of com.alibaba.citrus.maven.eclipse.base.eclipse.BuildCommand


                if (buildSpec != null) {
                    Xpp3Dom[] existingBuildCommands = buildSpec.getChildren(ELT_BUILD_COMMAND);
                    for (int j = 0; j < existingBuildCommands.length; j++) {
                        Xpp3Dom buildCommandName = existingBuildCommands[j].getChild(ELT_NAME);
                        if (buildCommandName != null) {
                            buildCommands.add(new BuildCommand(existingBuildCommands[j]));
                        }
                    }
                }
                // Added the below code to preserve the Symbolic links
                Xpp3Dom linkedResourcesElement = dom.getChild(ELT_LINKED_RESOURCES);
View Full Code Here


                                                                   "maven-eclipse.xml").write();

            // finally add it to the project writer.

            config.getBuildCommands().add(
                    new BuildCommand(
                            "org.eclipse.ui.externaltools.ExternalToolBuilder",
                            "LaunchConfigHandle",
                            "<project>/"
                            + EclipseLaunchConfigurationWriter.FILE_DOT_EXTERNAL_TOOL_BUILDERS
                            + "Maven_Ant_Builder.launch"));
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.maven.eclipse.base.eclipse.BuildCommand

Copyright © 2018 www.massapicom. 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.