e.praxiscore-code.6.0.0-beta2.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of praxiscore-code Show documentation
Show all versions of praxiscore-code Show documentation
Forest-of-actors runtime supporting real-time systems and real-time recoding - bringing aspects of Erlang, Smalltalk and Extempore to Java.
module org.praxislive.code {
requires java.compiler;
requires transitive org.praxislive.core;
requires org.praxislive.base;
exports org.praxislive.code;
exports org.praxislive.code.userapi;
provides javax.annotation.processing.Processor with
org.praxislive.code.internal.GenerateTemplateProcessor;
provides org.praxislive.core.Port.TypeProvider with
org.praxislive.code.internal.CodePortTypeProvider;
provides org.praxislive.core.Protocol.TypeProvider with
org.praxislive.code.internal.CodeProtocolsProvider;
uses org.praxislive.code.CodeConnector.Plugin;
}