Skip to content

Commit 29f8273

Browse files
authored
Merge pull request #101 from com-pas/develop
New release
2 parents 58213d1 + 1cb3581 commit 29f8273

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Check [basexhttp on DockerHub](https://hub.docker.com/r/basex/basexhttp/) for a
2929
You can run your application in dev mode that enables live coding using:
3030

3131
```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
3333
```
3434

3535
> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.

app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SPDX-License-Identifier: Apache-2.0
1818
<packaging>jar</packaging>
1919

2020
<properties>
21-
<quarkus.platform.version>2.2.2.Final</quarkus.platform.version>
21+
<quarkus.platform.version>2.2.3.Final</quarkus.platform.version>
2222
</properties>
2323

2424
<dependencyManagement>

repository-basex/src/main/java/org/lfenergy/compas/scl/data/repository/CompasSclDataBaseXRepository.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ public List<Item> list(SclType type) {
9898
" let $latestScl := local:latest-version($db, $id)\n" +
9999
" let $version := $latestScl//scl:SCL/scl:Header/@version\n" +
100100
" 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" +
101102
" return '<Item xmlns=\"" + SCL_DATA_SERVICE_V1_NS_URI + "\"><Id>' || $id || '</Id><Name>' || $name || '</Name><Version>' || $version || '</Version></Item>'",
102103
sclDataMarshaller::unmarshal);
103104
}

0 commit comments

Comments
 (0)