|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>org.utplsql</groupId> |
| 6 | + <artifactId>utplsql-java-api</artifactId> |
| 7 | + <version>3.1.10-SNAPSHOT</version> |
| 8 | + |
| 9 | + <name>utPLSQL Java API</name> |
| 10 | + <description>Java API for running Unit Tests with utPLSQL v3+.</description> |
| 11 | + <url>https://github.com/utPLSQL/utPLSQL-java-api</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 16 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 17 | + <junit.jupiter.version>5.5.2</junit.jupiter.version> |
| 18 | + <oracle.jdbc.version>19.3.0.0</oracle.jdbc.version> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <licenses> |
| 22 | + <license> |
| 23 | + <name>Apache License, Version 2.0</name> |
| 24 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 25 | + <distribution>repo</distribution> |
| 26 | + </license> |
| 27 | + </licenses> |
| 28 | + |
| 29 | + <dependencies> |
| 30 | + <dependency> |
| 31 | + <groupId>org.slf4j</groupId> |
| 32 | + <artifactId>slf4j-api</artifactId> |
| 33 | + <version>1.7.36</version> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>com.oracle.database.jdbc</groupId> |
| 37 | + <artifactId>ojdbc8</artifactId> |
| 38 | + <version>19.3.0.0</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>com.oracle.database.nls</groupId> |
| 42 | + <artifactId>orai18n</artifactId> |
| 43 | + <version>19.3.0.0</version> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>com.google.code.findbugs</groupId> |
| 47 | + <artifactId>jsr305</artifactId> |
| 48 | + <version>3.0.2</version> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.junit.jupiter</groupId> |
| 53 | + <artifactId>junit-jupiter</artifactId> |
| 54 | + <version>${junit.jupiter.version}</version> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.hamcrest</groupId> |
| 59 | + <artifactId>hamcrest</artifactId> |
| 60 | + <version>2.1</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.mockito</groupId> |
| 64 | + <artifactId>mockito-core</artifactId> |
| 65 | + <version>3.0.0</version> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + |
| 69 | + <build> |
| 70 | + <plugins> |
| 71 | + <plugin> |
| 72 | + <groupId>org.apache.maven.plugins</groupId> |
| 73 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <goals> |
| 77 | + <goal>integration-test</goal> |
| 78 | + <goal>verify</goal> |
| 79 | + </goals> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + <configuration> |
| 83 | + <environmentVariables> |
| 84 | + <DB_URL>${dbUrl}</DB_URL> |
| 85 | + <DB_USER>${dbUser}</DB_USER> |
| 86 | + <DB_PASS>${dbPass}</DB_PASS> |
| 87 | + </environmentVariables> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>com.amashchenko.maven.plugin</groupId> |
| 92 | + <artifactId>gitflow-maven-plugin</artifactId> |
| 93 | + <version>1.18.0</version> |
| 94 | + <configuration> |
| 95 | + <verbose>true</verbose> |
| 96 | + <gitFlowConfig> |
| 97 | + <productionBranch>main</productionBranch> |
| 98 | + </gitFlowConfig> |
| 99 | + </configuration> |
| 100 | + </plugin> |
| 101 | + </plugins> |
| 102 | + </build> |
| 103 | +</project> |
0 commit comments