Examples of GradleMultiProjectDef


Examples of org.netbeans.gradle.model.GradleMultiProjectDef

            final String[] expectedTasks,
            final String[] unexpectedTasks) {

        runTestForSubProject(relativeProjectName, new ProjectConnectionTask() {
            public void doTask(ProjectConnection connection) throws Exception {
                GradleMultiProjectDef projectDef = fetchProjectDef(connection);
                testBasicInfoForProject(relativeProjectName, projectDef);

                GradleProjectTree mainProject = projectDef.getMainProject();
                GenericProjectProperties genericProperties = mainProject.getGenericProperties();

                assertEquals("Build script for the project must be build.gradle.",
                        new File(genericProperties.getProjectDir(), "build.gradle"),
                        genericProperties.getBuildScript());
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.