Skip to content

Commit 6d8007f

Browse files
authoredMay 4, 2023
Merge pull request #4 from psiotwo/master
Support for VALUES
2 parents 5c70cd2 + 9631040 commit 6d8007f

31 files changed

+584
-1649
lines changed
 

‎.github/workflows/maven.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: Java CI with Maven
10+
11+
on:
12+
push:
13+
branches: [ "master" ]
14+
pull_request:
15+
branches: [ "master" ]
16+
17+
jobs:
18+
build:
19+
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- uses: actions/checkout@v3
24+
- name: Set up JDK 11
25+
uses: actions/setup-java@v3
26+
with:
27+
java-version: '11'
28+
distribution: 'temurin'
29+
cache: maven
30+
- name: Build with Maven
31+
run: mvn -B package --file pom.xml

‎owl2query-api/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<parent>
55
<artifactId>owl2query</artifactId>
66
<groupId>cz.cvut.kbss</groupId>
7-
<version>0.6.1</version>
8-
<relativePath>../pom.xml</relativePath>
7+
<version>0.6.2</version>
8+
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>owl2query-api</artifactId>
1111
<name>OWL2Query API</name>

‎owl2query-api/src/main/java/cz/cvut/kbss/owl2query/model/OWL2Query.java

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
*******************************************************************************/
1515
package cz.cvut.kbss.owl2query.model;
1616

17+
import java.util.List;
18+
1719
public interface OWL2Query<G> {
1820

1921
/**
@@ -108,4 +110,8 @@ OWL2Query<G> PropertyValue(final Term<G> pA, final Term<G> iA,
108110
OWL2Query<G> setLimit(int limit);
109111

110112
int getLimit();
113+
114+
OWL2Query<G> setValues(List<ResultBinding<G>> values);
115+
116+
List<ResultBinding<G>> getValues();
111117
}

‎owl2query-engine/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>owl2query</artifactId>
66
<groupId>cz.cvut.kbss</groupId>
7-
<version>0.6.1</version>
7+
<version>0.6.2</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>owl2query-engine</artifactId>

0 commit comments

Comments
 (0)