File tree Expand file tree Collapse file tree 4 files changed +3
-29
lines changed
extensions/modules/sql/src/test/java/org/exist/xquery/modules/sql Expand file tree Collapse file tree 4 files changed +3
-29
lines changed Original file line number Diff line number Diff line change 1152
1152
</distributionManagement >
1153
1153
1154
1154
<profiles >
1155
- <profile >
1156
- <id >java8-runtime-compatibility</id >
1157
- <!--
1158
- By default, this sets the `-release 8` flag to javac
1159
- on JDK 9+, so that the produced class files
1160
- are runtime compatible with Java 8.
1161
-
1162
- See - https://github.com/eclipse/jetty.project/issues/3244
1163
-
1164
- You can disable at build time, by using the mvn
1165
- args: `-P !java8-runtime-compatibility`
1166
- -->
1167
- <activation >
1168
- <jdk >[1.9,)</jdk >
1169
- </activation >
1170
- <build >
1171
- <plugins >
1172
- <plugin >
1173
- <artifactId >maven-compiler-plugin</artifactId >
1174
- <configuration >
1175
- <release >8</release >
1176
- </configuration >
1177
- </plugin >
1178
- </plugins >
1179
- </build >
1180
- </profile >
1181
1155
1182
1156
<profile >
1183
1157
<!-- NOTE: this is used from the maven-release-plugin -->
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ public void getConnectionFromModuleIsAutomaticallyClosed() throws EXistException
142
142
final XQueryContext mainQueryContext = mainCompiledQuery .getContext ();
143
143
144
144
// get the context of the library module
145
- final Module [] libraryModules = mainQueryContext .getModules ("http://mymodule.com" );
145
+ final org . exist . xquery . Module [] libraryModules = mainQueryContext .getModules ("http://mymodule.com" );
146
146
assertEquals (1 , libraryModules .length );
147
147
assertTrue (libraryModules [0 ] instanceof ExternalModule );
148
148
final ExternalModule libraryModule = (ExternalModule ) libraryModules [0 ];
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ public void getJndiConnectionFromModuleIsAutomaticallyClosed() throws EXistExcep
191
191
final XQueryContext mainQueryContext = mainCompiledQuery .getContext ();
192
192
193
193
// get the context of the library module
194
- final Module [] libraryModules = mainQueryContext .getModules ("http://mymodule.com" );
194
+ final org . exist . xquery . Module [] libraryModules = mainQueryContext .getModules ("http://mymodule.com" );
195
195
assertEquals (1 , libraryModules .length );
196
196
assertTrue (libraryModules [0 ] instanceof ExternalModule );
197
197
final ExternalModule libraryModule = (ExternalModule ) libraryModules [0 ];
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ public void getJndiConnectionFromModuleIsAutomaticallyClosed() throws EXistExcep
176
176
final XQueryContext mainQueryContext = mainCompiledQuery .getContext ();
177
177
178
178
// get the context of the library module
179
- final Module [] libraryModules = mainQueryContext .getModules ("http://mymodule.com" );
179
+ final org . exist . xquery . Module [] libraryModules = mainQueryContext .getModules ("http://mymodule.com" );
180
180
assertEquals (1 , libraryModules .length );
181
181
assertTrue (libraryModules [0 ] instanceof ExternalModule );
182
182
final ExternalModule libraryModule = (ExternalModule ) libraryModules [0 ];
You can’t perform that action at this time.
0 commit comments