File tree Expand file tree Collapse file tree
src/main/java/de/dfki/sds/aticsqlite Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >de.dfki.sds</groupId >
55 <artifactId >atic-api</artifactId >
6- <version >1.4.0 </version >
6+ <version >1.4.1 </version >
77 <packaging >jar</packaging >
88 <properties >
99 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >de.dfki.sds</groupId >
55 <artifactId >atic-server</artifactId >
6- <version >1.4.0 </version >
6+ <version >1.4.1 </version >
77 <packaging >jar</packaging >
88 <properties >
99 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <artifactId >atic-sqlite-jmh</artifactId >
55 <groupId >de.dfki.sds</groupId >
6- <version >1.4.0 </version >
6+ <version >1.4.1 </version >
77 <packaging >jar</packaging >
88 <properties >
99 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >de.dfki.sds</groupId >
55 <artifactId >atic-sqlite-tdb2tests</artifactId >
6- <version >1.4.0 </version >
6+ <version >1.4.1 </version >
77 <packaging >jar</packaging >
88 <properties >
99 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <artifactId >atic-sqlite</artifactId >
55 <groupId >de.dfki.sds</groupId >
6- <version >1.4.0 </version >
6+ <version >1.4.1 </version >
77 <packaging >jar</packaging >
88 <properties >
99 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change @@ -627,8 +627,6 @@ public void close() {
627627
628628 ctxLocal .remove ();
629629 }
630-
631- //ds.close();
632630 }
633631
634632 @ Override
Original file line number Diff line number Diff line change @@ -4036,6 +4036,12 @@ public void close() {
40364036 virtualGraphMap .clear ();
40374037
40384038 agentSessionManager .close ();
4039+
4040+ try {
4041+ db .close ();
4042+ } catch (Exception ex ) {
4043+ throw new RuntimeException (ex );
4044+ }
40394045
40404046 closed = true ;
40414047 }
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -euo pipefail
4+
5+ # Require version argument
6+ if [[ $# -ne 1 ]]; then
7+ echo " Usage: $0 <version>"
8+ exit 1
9+ fi
10+
11+ VERSION=" $1 "
12+
13+ PROJECTS=(
14+ " atic-api"
15+ " atic-sqlite"
16+ " atic-server"
17+ " atic-sqlite-jmh"
18+ " atic-sqlite-tdb2tests"
19+ )
20+
21+ for project in " ${PROJECTS[@]} " ; do
22+ echo " Project: $project "
23+ echo " Version: $VERSION "
24+ mvn -f " ../$project /pom.xml" versions:set -DnewVersion=" $VERSION "
25+ echo
26+ done
You can’t perform that action at this time.
0 commit comments