-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from gchq/develop
Release 2.0.0
- Loading branch information
Showing
550 changed files
with
22,847 additions
and
1,003 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule HQDM
deleted from
0f0b7c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>uk.gov.gchq.magma-core</groupId> | ||
<artifactId>magma-core</artifactId> | ||
<version>2.0.0</version> | ||
</parent> | ||
|
||
<groupId>uk.gov.gchq.magma-core</groupId> | ||
<artifactId>core</artifactId> | ||
<version>2.0.0</version> | ||
|
||
<name>core</name> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.release>17</maven.compiler.release> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>uk.gov.gchq.magma-core</groupId> | ||
<artifactId>hqdm</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>uk.gov.gchq.magma-core</groupId> | ||
<artifactId>hqdm-rdf</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.jena</groupId> | ||
<artifactId>apache-jena-libs</artifactId> | ||
<type>pom</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-jdk14</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright 2021 Crown Copyright | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. See the License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
/** | ||
* Magma Core is a lightweight set of Java classes to enable HQDM data objects to be created and | ||
* used as RDF Linked Data through Apache Jena. | ||
*/ | ||
module uk.gov.gchq.magmacore { | ||
requires org.apache.jena.arq; | ||
requires org.apache.jena.base; | ||
requires org.apache.jena.core; | ||
requires org.apache.jena.dboe.base; | ||
requires org.apache.jena.rdfconnection; | ||
requires org.apache.jena.tdb2; | ||
requires com.fasterxml.jackson.annotation; | ||
|
||
requires uk.gov.gchq.magmacore.hqdm; | ||
requires transitive uk.gov.gchq.magmacore.hqdm.rdf; | ||
|
||
exports uk.gov.gchq.magmacore.service; | ||
exports uk.gov.gchq.magmacore.service.transformation; | ||
exports uk.gov.gchq.magmacore.exception; | ||
exports uk.gov.gchq.magmacore.util; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.