File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
repository-basex/src/main/java/org/lfenergy/compas/scl/data/repository Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Check [basexhttp on DockerHub](https://hub.docker.com/r/basex/basexhttp/) for a
29
29
You can run your application in dev mode that enables live coding using:
30
30
31
31
``` shell script
32
- ./mvnw package io.quarkus:quarkus-maven-plugin:2.0.0 .Final:dev
32
+ ./mvnw package io.quarkus:quarkus-maven-plugin:2.2.3 .Final:dev
33
33
```
34
34
35
35
> ** _ NOTE:_ ** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/ .
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ SPDX-License-Identifier: Apache-2.0
18
18
<packaging >jar</packaging >
19
19
20
20
<properties >
21
- <quarkus .platform.version>2.2.2 .Final</quarkus .platform.version>
21
+ <quarkus .platform.version>2.2.3 .Final</quarkus .platform.version>
22
22
</properties >
23
23
24
24
<dependencyManagement >
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ public List<Item> list(SclType type) {
98
98
" let $latestScl := local:latest-version($db, $id)\n " +
99
99
" let $version := $latestScl//scl:SCL/scl:Header/@version\n " +
100
100
" let $name := $latestScl//scl:SCL/scl:Private[@type='" + COMPAS_SCL_EXTENSION_TYPE + "']/compas:" + COMPAS_SCL_NAME_EXTENSION + "\n " +
101
+ " order by fn:lower-case($name)\n " +
101
102
" return '<Item xmlns=\" " + SCL_DATA_SERVICE_V1_NS_URI + "\" ><Id>' || $id || '</Id><Name>' || $name || '</Name><Version>' || $version || '</Version></Item>'" ,
102
103
sclDataMarshaller ::unmarshal );
103
104
}
You can’t perform that action at this time.
0 commit comments