Skip to content

Commit

Permalink
feature/cxar-920-agents-edc (#89)
Browse files Browse the repository at this point in the history
* https://jira.catena-x.net/browse/CXAR-920 carve out the edc module

* https://jira.catena-x.net/browse/CXAR-920 relink to carved repo

* https://jira.catena-x.net/browse/KA-334 upgrade version and reference new images.

* https://jira.catena-x.net/browse/KA-334 Carve out sub-charts

* https://jira.catena-x.net/browse/KA-334 upgrade some versions according to dependabot.

* https://jira.catena-x.net/browse/KA-348 Add new RUL data mapping example.

* https://jira.catena-x.net/browse/KA-348 CodeQL Multi-Threading smell.

* https://jira.catena-x.net/browse/KA-334 Switch to main of EDC submodule

* https://jira.catena-x.net/browse/KA-334 take out empty default passwords and settings.
  • Loading branch information
drcgjung authored May 25, 2023
1 parent 24eb3cf commit 64ffe12
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.catenax</groupId>
<artifactId>knowledge</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.9.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Catena-X Knowledge Agents Ontology</name>
Expand Down
8 changes: 4 additions & 4 deletions tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ mvn package
Run the following command to merge the CX ontology to the standard output (RDF XML format)

```console
java -jar target/tools-0.9.1-SNAPSHOT.jar ../*_ontology.ttl
java -jar target/tools-1.9.1-SNAPSHOT.jar ../*_ontology.ttl
```

To run the merger with an XML-based stylesheet, for example to render the ontology as a graph

```console
java -jar target/tools-0.9.1-SNAPSHOT.jar -styleSheet src/main/resources/graph.xslt ../*_ontology.ttl
java -jar target/tools-1.9.1-SNAPSHOT.jar -styleSheet src/main/resources/graph.xslt ../*_ontology.ttl
```

To run the merger with RDF JSON LD output

```console
java -jar target/tools-0.9.1-SNAPSHOT.jar +jsonld ../*_ontology.ttl
java -jar target/tools-1.9.1-SNAPSHOT.jar +jsonld ../*_ontology.ttl
```

To run the merger with VOWL stylesheet on all domain ontologies and create vowl graphs
Expand All @@ -46,7 +46,7 @@ To run the merger with VOWL stylesheet on all domain ontologies and create vowl
for file in ../*_ontology.ttl;
do
echo Processing ${file:t} into ${file:t:r}.json
java -jar target/tools-0.9.1-SNAPSHOT.jar -styleSheet src/main/resources/vowl.xslt $file 1>../vowl/${file:t:r}.json
java -jar target/tools-1.9.1-SNAPSHOT.jar -styleSheet src/main/resources/vowl.xslt $file 1>../vowl/${file:t:r}.json
done
```

Expand Down
2 changes: 1 addition & 1 deletion tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>io.catenax.knowledge</groupId>
<artifactId>ontology</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.9.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void run(String[] args) throws Exception {

public static String CX_ONTOLOGY_IRI= "https://raw.githubusercontent.com/catenax-ng/product-knowledge/main/ontology/cx_ontology.ttl";
public static String CX_ONTOLOGY_TITLE= "Catena-X Ontology";
public static String CX_ONTOLOGY_VERSION= "0.9.1-SNAPSHOT";
public static String CX_ONTOLOGY_VERSION= "1.9.1-SNAPSHOT";

/**
* run the merge command on the given files and output the result to the console
Expand Down

0 comments on commit 64ffe12

Please sign in to comment.