|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>org.utplsql</groupId> |
| 7 | + <artifactId>ora-stuck-timeout</artifactId> |
| 8 | + <version>1.0.0</version> |
| 9 | + <packaging>pom</packaging> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl> |
| 13 | + <dbUser>UT3</dbUser> |
| 14 | + <dbPass>UT3</dbPass> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <build> |
| 18 | + <plugins> |
| 19 | + <plugin> |
| 20 | + <groupId>org.utplsql</groupId> |
| 21 | + <artifactId>utplsql-maven-plugin</artifactId> |
| 22 | + <version>@project.version@</version> |
| 23 | + <executions> |
| 24 | + <execution> |
| 25 | + <goals> |
| 26 | + <goal>test</goal> |
| 27 | + </goals> |
| 28 | + <configuration> |
| 29 | + <oraStuckTimeout>1</oraStuckTimeout> |
| 30 | + <ignoreFailure>false</ignoreFailure> |
| 31 | + <paths> |
| 32 | + <path>app</path> |
| 33 | + </paths> |
| 34 | + <reporters> |
| 35 | + <reporter> |
| 36 | + <name>UT_COVERAGE_SONAR_REPORTER</name> |
| 37 | + <fileOutput>utplsql/coverage-sonar-report.xml</fileOutput> |
| 38 | + <consoleOutput>true</consoleOutput> |
| 39 | + </reporter> |
| 40 | + <reporter> |
| 41 | + <name>UT_SONAR_TEST_REPORTER</name> |
| 42 | + <fileOutput>utplsql/sonar-test-report.xml</fileOutput> |
| 43 | + <consoleOutput>true</consoleOutput> |
| 44 | + </reporter> |
| 45 | + </reporters> |
| 46 | + <sources> |
| 47 | + <source> |
| 48 | + <directory>scripts/sources</directory> |
| 49 | + <includes> |
| 50 | + <include>**/**.pks</include> |
| 51 | + <include>**/**.pkb</include> |
| 52 | + </includes> |
| 53 | + </source> |
| 54 | + </sources> |
| 55 | + <tests> |
| 56 | + <test> |
| 57 | + <directory>scripts/tests</directory> |
| 58 | + <includes> |
| 59 | + <include>**/**.pks</include> |
| 60 | + <include>**/**.pkb</include> |
| 61 | + </includes> |
| 62 | + </test> |
| 63 | + </tests> |
| 64 | + </configuration> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
| 68 | + </plugins> |
| 69 | + </build> |
| 70 | +</project> |
0 commit comments