snippet of maven profile excluding by default integration tests 

<profiles>
        <profile>
            <id>no-integration-test</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <configuration>
                            <excludes>
                                <exclude>
                                    **/integration/**
                                </exclude>
                            </excludes>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>



--
View this message in context: 
http://camel.465427.n5.nabble.com/camel-dropbox-tp5748012p5748734.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to