You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- SQL Developer specific dependencies part 2 (used for tests only) -->
146
161
<dependency>
147
162
<groupId>oracle</groupId>
@@ -172,6 +187,12 @@
172
187
<artifactId>spring-jdbc</artifactId>
173
188
<version>5.2.6.RELEASE</version>
174
189
</dependency>
190
+
<dependency>
191
+
<!-- transitive reference, but IntelliJ wants to have it explicit (to avoid warnings) -->
192
+
<groupId>org.springframework</groupId>
193
+
<artifactId>spring-core</artifactId>
194
+
<version>5.2.6.RELEASE</version>
195
+
</dependency>
175
196
<dependency>
176
197
<!-- used for HtmlUtils.htmlEscape in RunnerPanel -->
177
198
<groupId>org.springframework</groupId>
@@ -191,7 +212,13 @@
191
212
<version>4.12</version>
192
213
<scope>test</scope>
193
214
</dependency>
194
-
</dependencies>
215
+
<dependency>
216
+
<groupId>org.jetbrains</groupId>
217
+
<artifactId>annotations</artifactId>
218
+
<version>13.0</version>
219
+
<scope>compile</scope>
220
+
</dependency>
221
+
</dependencies>
195
222
196
223
<!-- Build Settings -->
197
224
<build>
@@ -370,6 +397,13 @@
370
397
</configuration>
371
398
</plugin>
372
399
<plugin>
400
+
<!-- builds the OSGi bundle including MANIFEST.MF with build version number and properties -->
401
+
<!-- IMPORTANT NOTICE: -->
402
+
<!-- disable OSGi facets in IntelliJ (2020.1) to get rid of the following types of warnings/errors: -->
403
+
<!-- - Warning:osgi: [org.utplsql.sqldev] Host ...= for this fragment/require bundle cannot be found on the classpath -->
404
+
<!-- - Warning:osgi: [org.utplsql.sqldev] No translation found for macro: ... -->
405
+
<!-- - Error:osgi: [org.utplsql.sqldev] Input file does not exist: target/classes/META-INF/extension.xml -->
406
+
<!-- - Error:osgi: [org.utplsql.sqldev] Invalid value for Bundle-Version, ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion} does not match \d{1,9}(\.\d{1,9}(\.\d{1,9}(\.[-\w]+)?)?)? -->
0 commit comments