Remove module-infos

Some libraires are not yet ready..

{Arrow,Lucene,Http4k} should be packed inside a shaded jar because they
all have some split packages

HikariCP has an invalid module-info.java

Kapt doesn't work
This commit is contained in:
2020-10-23 22:56:07 +02:00
parent 38750a588c
commit e5a2b8993f
6 changed files with 0 additions and 97 deletions
@@ -1,33 +0,0 @@
module simplenotes.domain {
requires kotlin.stdlib;
requires kotlin.stdlib.jdk7;
requires simplenotes.config;
requires simplenotes.types;
requires simplenotes.persistance;
exports be.simplenotes.domain to simplenotes.app;
exports be.simplenotes.domain.security to simplenotes.app;
exports be.simplenotes.domain.usecases to simplenotes.app;
exports be.simplenotes.domain.usecases.markdown to simplenotes.app;
exports be.simplenotes.domain.usecases.users.login to simplenotes.app;
exports be.simplenotes.domain.usecases.users.delete to simplenotes.app;
exports be.simplenotes.domain.usecases.users.register to simplenotes.app;
requires arrow.module;
requires flexmark;
requires flexmark.util.data;
requires flexmark.ext.gfm.tasklist;
requires koin.core;
requires konform.jvm;
requires org.yaml.snakeyaml;
requires java.jwt;
requires kotlinx.serialization.core.jvm;
requires org.apache.commons.compress;
requires kotlinx.serialization.json.jvm;
requires owasp.java.html.sanitizer;
requires jbcrypt;
requires simplenotes.search;
}