|
| 1 | +<!--Used to obtain ojdbc8 and orai18n files that are needed for client--> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" 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 | + <groupId>org.utplsql</groupId> |
| 6 | + <artifactId>utplsql</artifactId> |
| 7 | + <version>3.0.4-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>utPLSQL</name> |
| 11 | + <url>https://github.com/utPLSQL/utPLSQL</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>com.oracle.jdbc</groupId> |
| 20 | + <artifactId>ojdbc8</artifactId> |
| 21 | + <version>12.2.0.1</version> |
| 22 | + <scope>compile</scope> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>com.oracle.jdbc</groupId> |
| 26 | + <artifactId>orai18n</artifactId> |
| 27 | + <version>12.2.0.1</version> |
| 28 | + <scope>compile</scope> |
| 29 | + </dependency> |
| 30 | + </dependencies> |
| 31 | + |
| 32 | + <repositories> |
| 33 | + <repository> |
| 34 | + <id>maven.oracle.com</id> |
| 35 | + <releases> |
| 36 | + <enabled>true</enabled> |
| 37 | + </releases> |
| 38 | + <snapshots> |
| 39 | + <enabled>false</enabled> |
| 40 | + </snapshots> |
| 41 | + <url>https://maven.oracle.com</url> |
| 42 | + <layout>default</layout> |
| 43 | + </repository> |
| 44 | + </repositories> |
| 45 | + |
| 46 | + <pluginRepositories> |
| 47 | + <pluginRepository> |
| 48 | + <id>maven.oracle.com</id> |
| 49 | + <url>https://maven.oracle.com</url> |
| 50 | + </pluginRepository> |
| 51 | + </pluginRepositories> |
| 52 | + |
| 53 | + <build> |
| 54 | + <extensions> |
| 55 | + <extension> |
| 56 | + <groupId>io.packagecloud.maven.wagon</groupId> |
| 57 | + <artifactId>maven-packagecloud-wagon</artifactId> |
| 58 | + <version>0.0.6</version> |
| 59 | + </extension> |
| 60 | + </extensions> |
| 61 | + </build> |
| 62 | +</project> |
0 commit comments