Skip to content

Commit

Permalink
Add required modules to module-info.java (#8692)
Browse files Browse the repository at this point in the history
* Add required modules to module-info.java

* add uses directive

Co-authored-by: Siedlerchr <siedlerkiller@gmail.com>
  • Loading branch information
koppor and Siedlerchr authored Apr 19, 2022
1 parent 3611809 commit 9cc52b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ dependencies {

implementation 'commons-cli:commons-cli:1.5.0'

implementation 'org.libreoffice:libreoffice:7.3.2'
implementation 'org.libreoffice:libreoffice:7.3.1'
implementation 'org.libreoffice:unoloader:7.3.2'

implementation 'io.github.java-diff-utils:java-diff-utils:4.11'
Expand Down Expand Up @@ -179,7 +179,7 @@ dependencies {
implementation 'org.controlsfx:controlsfx:11.1.1'

implementation 'org.jsoup:jsoup:1.14.3'
implementation 'com.konghq:unirest-java:3.13.8'
implementation 'com.konghq:unirest-java:3.13.7'

implementation 'org.slf4j:slf4j-api:2.0.0-alpha7'
implementation "org.tinylog:tinylog-api:2.4.1"
Expand Down Expand Up @@ -207,7 +207,7 @@ dependencies {

implementation group: 'net.harawata', name: 'appdirs', version: '1.2.1'

testImplementation 'io.github.classgraph:classgraph:4.8.146'
testImplementation 'io.github.classgraph:classgraph:4.8.143'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
testImplementation 'org.junit.platform:junit-platform-launcher:1.8.2'

Expand Down
7 changes: 5 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@

// Microsoft application insights
requires applicationinsights.core;
requires applicationinsights.logging.log4j2;

// Libre Office
requires org.libreoffice.uno;
Expand All @@ -71,7 +72,6 @@
requires fastparse;
requires jbibtex;
requires citeproc.java;
requires antlr.runtime;
requires de.saxsys.mvvmfx.validation;
requires com.google.gson;
requires unirest.java;
Expand Down Expand Up @@ -110,10 +110,13 @@
requires org.apache.lucene.analysis.common;
requires org.apache.lucene.highlighter;


requires com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.dataformat.yaml;
requires com.fasterxml.jackson.datatype.jsr310;
requires net.harawata.appdirs;

requires org.eclipse.jgit;
uses org.eclipse.jgit.transport.SshSessionFactory;
uses org.eclipse.jgit.lib.GpgSigner;

}

0 comments on commit 9cc52b3

Please sign in to comment.