Skip to content

Commit 070bc83

Browse files
Change version (#34)
Change version revision
1 parent b2d7041 commit 070bc83

File tree

6 files changed

+16
-19
lines changed

6 files changed

+16
-19
lines changed

ojdbc-provider-azure/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<name>Oracle JDBC Azure Providers</name>
66

77
<artifactId>ojdbc-provider-azure</artifactId>
8-
<version>${revision}</version>
8+
<version>1.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>com.oracle.database.jdbc</groupId>
1313
<artifactId>ojdbc-extensions</artifactId>
14-
<version>${revision}</version>
14+
<version>1.0.0</version>
1515
</parent>
1616

1717
<dependencyManagement>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.oracle.database.jdbc</groupId>
3232
<artifactId>ojdbc-provider-common</artifactId>
33-
<version>${revision}</version>
33+
<version>1.0.0</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>com.azure</groupId>

ojdbc-provider-common/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<name>Oracle JDBC Providers Common Module</name>
77

88
<artifactId>ojdbc-provider-common</artifactId>
9-
<version>${revision}</version>
9+
<version>1.0.0</version>
1010
<packaging>jar</packaging>
1111

1212
<parent>
1313
<groupId>com.oracle.database.jdbc</groupId>
1414
<artifactId>ojdbc-extensions</artifactId>
15-
<version>${revision}</version>
15+
<version>1.0.0</version>
1616
</parent>
1717

1818
<dependencies>
@@ -52,5 +52,4 @@
5252
</plugin>
5353
</plugins>
5454
</build>
55-
5655
</project>

ojdbc-provider-oci/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<name>Oracle JDBC OCI Providers</name>
66

77
<artifactId>ojdbc-provider-oci</artifactId>
8-
<version>${revision}</version>
8+
<version>1.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>com.oracle.database.jdbc</groupId>
1313
<artifactId>ojdbc-extensions</artifactId>
14-
<version>${revision}</version>
14+
<version>1.0.0</version>
1515
</parent>
1616

1717
<dependencyManagement>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.oracle.database.jdbc</groupId>
3232
<artifactId>ojdbc-provider-common</artifactId>
33-
<version>${revision}</version>
33+
<version>1.0.0</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>com.oracle.database.jdbc</groupId>

ojdbc-provider-opentelemetry/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
<groupId>com.oracle.database.jdbc</groupId>
88
<artifactId>ojdbc-provider-opentelemetry</artifactId>
9-
<version>${revision}</version>
9+
<version>1.0.0</version>
1010
<packaging>jar</packaging>
1111

1212
<parent>
1313
<groupId>com.oracle.database.jdbc</groupId>
1414
<artifactId>ojdbc-extensions</artifactId>
15-
<version>${revision}</version>
15+
<version>1.0.0</version>
1616
</parent>
1717

1818
<properties>

ojdbc-provider-samples/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55
<name>Oracle JDBC Provider Code Samples</name>
66

77
<artifactId>ojdbc-provider-samples</artifactId>
8-
<version>${revision}</version>
8+
<version>1.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>com.oracle.database.jdbc</groupId>
1313
<artifactId>ojdbc-extensions</artifactId>
14-
<version>${revision}</version>
14+
<version>1.0.0</version>
1515
</parent>
1616

1717
<dependencies>
1818
<dependency>
1919
<groupId>com.oracle.database.jdbc</groupId>
2020
<artifactId>ojdbc-provider-azure</artifactId>
21-
<version>${revision}</version>
21+
<version>1.0.0</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>com.oracle.database.jdbc</groupId>
2525
<artifactId>ojdbc-provider-oci</artifactId>
26-
<version>${revision}</version>
26+
<version>1.0.0</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.oracle.database.security</groupId>

pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44

55
<groupId>com.oracle.database.jdbc</groupId>
66
<artifactId>ojdbc-extensions</artifactId>
7-
<version>${revision}</version>
7+
<version>1.0.0</version>
88
<packaging>pom</packaging>
99

1010
<name>Extensions for the Oracle JDBC Driver</name>
1111

1212
<properties>
13-
<revision>1.0.0</revision>
1413
<maven.compiler.target>8</maven.compiler.target>
1514
<maven.compiler.source>8</maven.compiler.source>
1615
<jdbc.version>23.3.0.23.09</jdbc.version>
@@ -55,7 +54,7 @@
5554
<dependency>
5655
<groupId>com.oracle.database.jdbc</groupId>
5756
<artifactId>ojdbc-provider-common</artifactId>
58-
<version>${revision}</version>
57+
<version>1.0.0</version>
5958
<classifier>tests</classifier>
6059
<type>test-jar</type>
6160
<scope>test</scope>
@@ -128,5 +127,4 @@
128127
</plugin>
129128
</plugins>
130129
</build>
131-
132130
</project>

0 commit comments

Comments
 (0)