Skip to content

Commit b58c7f5

Browse files
update versions, fix build warnings, add comments
1 parent ead3729 commit b58c7f5

File tree

1 file changed

+33
-26
lines changed

1 file changed

+33
-26
lines changed

sqldev/pom.xml

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,138 +16,141 @@
1616
<final.name>utplsql_for_SQLDev_${project.version}</final.name>
1717
</properties>
1818
<dependencies>
19-
<!-- SQL Developer specific dependencies part 1 (not available in public maven repositories) -->
19+
<!-- SQL Developer specific dependencies part 1 (not available in public Maven repositories) -->
20+
<!-- Versions of scope system are based on SQL Developer 19.4.0. -->
21+
<!-- The actual version is not that important, since the these libraries are provided. -->
22+
<!-- Therefore it is not planned to update them with every change of sqldev.basedir. -->
2023
<dependency>
2124
<groupId>oracle</groupId>
2225
<artifactId>idert</artifactId>
23-
<version>12.2.0</version>
26+
<version>13.0.0</version>
2427
<scope>system</scope>
2528
<systemPath>${sqldev.basedir}/ide/lib/idert.jar</systemPath>
2629
</dependency>
2730
<dependency>
2831
<groupId>oracle</groupId>
2932
<artifactId>javatools-nodeps</artifactId>
30-
<version>12.2.0</version>
33+
<version>13.0.0</version>
3134
<scope>system</scope>
3235
<systemPath>${sqldev.basedir}/modules/oracle.javatools/javatools-nodeps.jar</systemPath>
3336
</dependency>
3437
<dependency>
3538
<groupId>oracle</groupId>
3639
<artifactId>javatools</artifactId>
37-
<version>12.2.0</version>
40+
<version>13.0.0</version>
3841
<scope>system</scope>
3942
<systemPath>${sqldev.basedir}/ide/lib/javatools.jar</systemPath>
4043
</dependency>
4144
<dependency>
4245
<groupId>oracle</groupId>
4346
<artifactId>oracle.ide.ceditor</artifactId>
44-
<version>12.2.0</version>
47+
<version>13.0.0</version>
4548
<scope>system</scope>
4649
<systemPath>${sqldev.basedir}/ide/extensions/oracle.ide.ceditor.jar</systemPath>
4750
</dependency>
4851
<dependency>
4952
<groupId>oracle</groupId>
5053
<artifactId>oracle.ide</artifactId>
51-
<version>12.2.0</version>
54+
<version>13.0.0</version>
5255
<scope>system</scope>
5356
<systemPath>${sqldev.basedir}/ide/extensions/oracle.ide.jar</systemPath>
5457
</dependency>
5558
<dependency>
5659
<groupId>oracle</groupId>
5760
<artifactId>uic</artifactId>
58-
<version>12.2.2</version>
61+
<version>13.0.0</version>
5962
<scope>system</scope>
6063
<systemPath>${sqldev.basedir}/ide/lib/uic.jar</systemPath>
6164
</dependency>
6265
<dependency>
6366
<groupId>oracle</groupId>
6467
<artifactId>oracle.ide.navigator</artifactId>
65-
<version>12.2.0</version>
68+
<version>13.0.0</version>
6669
<scope>system</scope>
6770
<systemPath>${sqldev.basedir}/ide/extensions/oracle.ide.navigator.jar</systemPath>
6871
</dependency>
6972
<dependency>
7073
<groupId>oracle</groupId>
7174
<artifactId>javax-ide</artifactId>
72-
<version>12.2.0</version>
75+
<version>13.0.0</version>
7376
<scope>system</scope>
7477
<systemPath>${sqldev.basedir}/ide/lib/javax-ide.jar</systemPath>
7578
</dependency>
7679
<dependency>
7780
<groupId>oracle</groupId>
7881
<artifactId>oracle.dbtools-common</artifactId>
79-
<version>12.2.0</version>
82+
<version>19.4.0</version>
8083
<scope>system</scope>
8184
<systemPath>${sqldev.basedir}/sqldeveloper/lib/dbtools-common.jar</systemPath>
8285
</dependency>
8386
<dependency>
8487
<groupId>oracle</groupId>
8588
<artifactId>oracle.sqldeveloper</artifactId>
86-
<version>12.2.0</version>
89+
<version>19.3.0</version>
8790
<scope>system</scope>
8891
<systemPath>${sqldev.basedir}/sqldeveloper/extensions/oracle.sqldeveloper.jar</systemPath>
8992
</dependency>
9093
<dependency>
9194
<groupId>oracle</groupId>
9295
<artifactId>oracle.sqldeveloper.utils</artifactId>
93-
<version>12.2.0</version>
96+
<version>19.3.0</version>
9497
<scope>system</scope>
9598
<systemPath>${sqldev.basedir}/sqldeveloper/extensions/oracle.sqldeveloper.utils.jar</systemPath>
9699
</dependency>
97100
<dependency>
98101
<groupId>oracle</groupId>
99102
<artifactId>oracle.sqldeveloper.worksheet</artifactId>
100-
<version>12.2.0</version>
103+
<version>19.3.0</version>
101104
<scope>system</scope>
102105
<systemPath>${sqldev.basedir}/sqldeveloper/extensions/oracle.sqldeveloper.worksheet.jar</systemPath>
103106
</dependency>
104107
<dependency>
105108
<groupId>oracle</groupId>
106109
<artifactId>ojdbc8</artifactId>
107-
<version>12.2.0.1.0</version>
110+
<version>19.3.0</version>
108111
<scope>system</scope>
109112
<systemPath>${sqldev.basedir}/jdbc/lib/ojdbc8.jar</systemPath>
110113
</dependency>
111114
<dependency>
112115
<groupId>oracle</groupId>
113116
<artifactId>dbapi</artifactId>
114-
<version>12.2.1</version>
117+
<version>19.3.0</version>
115118
<scope>system</scope>
116119
<systemPath>${sqldev.basedir}/ide/lib/dbapi.jar</systemPath>
117120
</dependency>
118121
<dependency>
119122
<groupId>oracle</groupId>
120123
<artifactId>oracle.ide.db</artifactId>
121-
<version>12.2.1</version>
124+
<version>19.3.0</version>
122125
<scope>system</scope>
123126
<systemPath>${sqldev.basedir}/ide/extensions/oracle.ide.db.jar</systemPath>
124127
</dependency>
125128
<dependency>
126129
<groupId>oracle</groupId>
127130
<artifactId>oracle.jdeveloper.db.connection</artifactId>
128-
<version>12.2.1</version>
131+
<version>19.3.0</version>
129132
<scope>system</scope>
130133
<systemPath>${sqldev.basedir}/jdev/extensions/oracle.jdeveloper.db.connection.jar</systemPath>
131134
</dependency>
132135
<dependency>
133136
<groupId>oracle</groupId>
134137
<artifactId>oracle.jdeveloper.java.core.jar</artifactId>
135-
<version>12.2.1</version>
138+
<version>13.0.0</version>
136139
<scope>system</scope>
137140
<systemPath>${sqldev.basedir}/jdev/extensions/oracle.jdeveloper.java.core.jar</systemPath>
138141
</dependency>
139142
<!-- SQL Developer specific dependencies part 2 (used for tests only) -->
140143
<dependency>
141144
<groupId>oracle</groupId>
142145
<artifactId>jewt4.jar</artifactId>
143-
<version>12.2.1</version>
146+
<version>13.0.0</version>
144147
<scope>system</scope>
145148
<systemPath>${sqldev.basedir}/modules/oracle.bali.jewt/jewt4.jar</systemPath>
146149
</dependency>
147150
<dependency>
148151
<groupId>oracle</groupId>
149152
<artifactId>share.jar</artifactId>
150-
<version>12.2.1</version>
153+
<version>13.0.0</version>
151154
<scope>system</scope>
152155
<systemPath>${sqldev.basedir}/modules/oracle.bali.share/share.jar</systemPath>
153156
</dependency>
@@ -161,16 +164,19 @@
161164
</dependency>
162165
<!-- other dependencies -->
163166
<dependency>
167+
<!-- used mainly to access the database via JdbcTemplate -->
164168
<groupId>org.springframework</groupId>
165169
<artifactId>spring-jdbc</artifactId>
166170
<version>5.2.6.RELEASE</version>
167171
</dependency>
168172
<dependency>
173+
<!-- used for HtmlUtils.htmlEscape in RunnerPanel -->
169174
<groupId>org.springframework</groupId>
170175
<artifactId>spring-web</artifactId>
171176
<version>5.2.6.RELEASE</version>
172177
</dependency>
173178
<dependency>
179+
<!-- optional, for RunGenerator and TestGenerator -->
174180
<groupId>org.oddgen</groupId>
175181
<artifactId>org.oddgen.sqldev</artifactId>
176182
<version>0.3.1</version>
@@ -261,7 +267,7 @@
261267
<plugin>
262268
<groupId>org.apache.maven.plugins</groupId>
263269
<artifactId>maven-antrun-plugin</artifactId>
264-
<version>1.8</version><!--$NO-MVN-MAN-VER$-->
270+
<version>3.0.0</version><!--$NO-MVN-MAN-VER$-->
265271
<executions>
266272
<execution>
267273
<phase>prepare-package</phase>
@@ -395,7 +401,7 @@
395401
org.aspectj.lang.reflect
396402
</_exportcontents>
397403
<Require-Bundle>
398-
oracle.javatools-nodeps,
404+
oracle.javatools,
399405
oracle.jdeveloper.db.connection,
400406
oracle.idert,
401407
oracle.ide,
@@ -414,7 +420,7 @@
414420
</plugin>
415421
<plugin>
416422
<artifactId>maven-assembly-plugin</artifactId>
417-
<version>3.2.0</version><!--$NO-MVN-MAN-VER$-->
423+
<version>3.3.0</version><!--$NO-MVN-MAN-VER$-->
418424
<configuration>
419425
<finalName>${final.name}</finalName>
420426
<appendAssemblyId>false</appendAssemblyId>
@@ -436,7 +442,7 @@
436442
<plugin>
437443
<groupId>net.nicoulaj.maven.plugins</groupId>
438444
<artifactId>checksum-maven-plugin</artifactId>
439-
<version>1.8</version>
445+
<version>1.9</version>
440446
<executions>
441447
<execution>
442448
<id>calculate-checksums</id>
@@ -451,6 +457,7 @@
451457
<pluginManagement>
452458
<plugins>
453459
<plugin>
460+
<!-- Dummy plugin used in Eclipse IDE only -->
454461
<groupId>org.eclipse.m2e</groupId>
455462
<artifactId>lifecycle-mapping</artifactId>
456463
<version>1.0.0</version>
@@ -461,7 +468,7 @@
461468
<pluginExecutionFilter>
462469
<groupId>org.apache.maven.plugins</groupId>
463470
<artifactId>maven-dependency-plugin</artifactId>
464-
<versionRange>[3.1.1,)</versionRange>
471+
<versionRange>[3.1.2,)</versionRange>
465472
<goals>
466473
<goal>copy-dependencies</goal>
467474
</goals>
@@ -479,7 +486,7 @@
479486
build-helper-maven-plugin
480487
</artifactId>
481488
<versionRange>
482-
[3.0.0,)
489+
[3.1.0,)
483490
</versionRange>
484491
<goals>
485492
<goal>parse-version</goal>

0 commit comments

Comments
 (0)