utPLSQL / utPLSQL-maven-plugin

Maven plugin for running Unit Tests with utPLSQL v3
Apache License 2.0
13 stars 10 forks source link

All parameters should be optional #21

Closed jgarec closed 5 years ago

jgarec commented 5 years ago

The following snippet should be enough to run utplsql :

<plugin>
                <groupId>${project.groupId}</groupId>
                <artifactId>utplsql-maven-plugin</artifactId>
                <version>${utplsql-maven-plugin-version}</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Today it requires sources / tests and reporters tags which are not always necessary.

jgebal commented 5 years ago

Path can/should be optional too as it defaults to all tests from current schema (connected user)