Skip to content

Commit

Permalink
[nobug]: basedir is the only prop available (#4)
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj authored Jul 3, 2018
1 parent f175e85 commit b726cec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions oracleddlparser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
</parent>

<properties>
<ojdbc.jar>${basedir}/../../extension.lib.external/ojdbc6.jar</ojdbc.jar>
<maven-project-info-reports-plugin.version>2.4</maven-project-info-reports-plugin.version>
<maven-surefire-plugin.version>2.11</maven-surefire-plugin.version>
<maven-surefire-report-plugin.version>2.11</maven-surefire-report-plugin.version>
Expand Down Expand Up @@ -176,7 +175,7 @@
<id>system-jdbc-driver</id>
<activation>
<file>
<exists>${ojdbc.jar}</exists>
<exists>${basedir}/../../extension.lib.external/ojdbc6.jar</exists>
</file>
</activation>
<dependencies>
Expand All @@ -185,15 +184,15 @@
<artifactId>ojdbc6</artifactId>
<version>11.2.0</version>
<scope>system</scope>
<systemPath>${ojdbc.jar}</systemPath>
<systemPath>${basedir}/../../extension.lib.external/ojdbc6.jar</systemPath>
</dependency>
</dependencies>
</profile>
<profile>
<id>repo-jdbc-driver</id>
<activation>
<file>
<missing>${ojdbc.jar}</missing>
<missing>${basedir}/../../extension.lib.external/ojdbc6.jar</missing>
</file>
</activation>
<dependencies>
Expand Down

0 comments on commit b726cec

Please sign in to comment.