All Downloads are FREE. Search and download functionalities are using the official Maven repository.

r.entity.1.56.0.source-code.module-info Maven / Gradle / Ivy

/*
 * Copyright © 2015 Integrated Knowledge Management ([email protected])
 *
 * 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.
 */
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

import dev.ikm.tinkar.common.service.CachingService;
import dev.ikm.tinkar.common.service.LoadDataFromFileController;
import dev.ikm.tinkar.entity.EntityService;
import dev.ikm.tinkar.entity.StampService;
import dev.ikm.tinkar.entity.load.LoadEntitiesFromFileController;

@SuppressWarnings("module")
        // 7 in HL7 is not a version reference
module dev.ikm.tinkar.entity {
    requires org.slf4j;
    requires io.activej.bytebuf;
    requires transitive dev.ikm.tinkar.common;
    requires transitive dev.ikm.tinkar.component;
    requires java.logging;
    requires transitive com.github.benmanes.caffeine;
    requires org.eclipse.collections;
    requires org.eclipse.collections.api;
    requires static io.soabase.recordbuilder.core;
    requires static java.compiler;
    requires transitive dev.ikm.tinkar.terms;
    requires java.xml;
    requires dev.ikm.tinkar.schema;
    requires com.google.protobuf;
    requires org.jgrapht.core;

    exports dev.ikm.tinkar.entity;
    exports dev.ikm.tinkar.entity.aggregator;
    exports dev.ikm.tinkar.entity.graph;
    exports dev.ikm.tinkar.entity.util;
    exports dev.ikm.tinkar.entity.load;
    exports dev.ikm.tinkar.entity.export;
    exports dev.ikm.tinkar.entity.transaction;
    exports dev.ikm.tinkar.entity.transform;
    exports dev.ikm.tinkar.entity.graph.isomorphic;
    exports dev.ikm.tinkar.entity.graph.adaptor.axiom;

    opens dev.ikm.tinkar.entity.graph.adaptor.axiom;

    provides LoadDataFromFileController
            with LoadEntitiesFromFileController;

    uses CachingService;
    uses EntityService;
    uses StampService;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy