Package org.appfuse.tool

Examples of org.appfuse.tool.RenamePackages.execute()


            RenamePackages renamePackagesTool = new RenamePackages(project.getGroupId());
            if (project.hasParent()) {
                renamePackagesTool.setBaseDir(project.getBasedir() + "/src");
            }

            renamePackagesTool.execute();
        }

        // when performing full-source on a modular project, add the properties to the root pom.xml at the end
        if (project.getPackaging().equals("war") && project.hasParent()) {
            // store sorted properties in a thread local for later retrieval
View Full Code Here


                } else {
                    renamePackagesTool.setBaseDir("web");
                }
            }

            renamePackagesTool.execute();
        }

        // todo: gather and add repositories from appfuse projects
        // should work for now since most artifacts are in static.appfuse.org/repository
View Full Code Here

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {

        RenamePackages tool = new RenamePackages(getProject().getGroupId());
        tool.execute();
       
    }

    /**
     * extending Hibernate exporter only to access the Maven project
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.