Skip to content

Commit

Permalink
update unicode2latex, patch modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Apr 5, 2022
1 parent 624c224 commit d7fbd59
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,8 @@ application {

// TODO: Ugly workaround to temporarily ignore build errors to dependencies of latex2unicode
// These should be removed, as well as the files in the lib folder, as soon as they have valid module names
modularity.patchModule("test", "fastparse_2.12-1.0.0.jar")
modularity.patchModule("test2", "fastparse-utils_2.12-1.0.0.jar")
modularity.patchModule("test3", "sourcecode_2.12-0.1.4.jar")
modularity.patchModule("fastparse", "sourcecode_2.13-0.2.3")


// Workaround for https://github.com/openjfx/javafx-gradle-plugin/issues/89
// See also https://github.com/java9-modularity/gradle-modules-plugin/issues/165
Expand Down Expand Up @@ -185,8 +184,8 @@ dependencies {
implementation group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '3.0.1'
implementation group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '3.0.2'

implementation ('com.github.tomtung:latex2unicode_2.12:0.3.0') {
exclude module: 'fastparse_2.12'
implementation ('com.github.tomtung:latex2unicode_2.13:0.3.0') {
exclude module: 'fastparse_2.13'
}

implementation group: 'com.microsoft.azure', name: 'applicationinsights-core', version: '2.4.1'
Expand Down
Binary file removed lib/fastparse-1.0.0.jar
Binary file not shown.
Binary file added lib/fastparse-2.3.3.jar
Binary file not shown.
Binary file removed lib/fastparse-utils-1.0.0.jar
Binary file not shown.
Binary file added lib/geny-0.6.10.jar
Binary file not shown.
Binary file removed lib/sourcecode-0.1.4.jar
Binary file not shown.
Binary file added lib/sourcecode-0.2.3.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.regex.Pattern;

import com.github.tomtung.latex2unicode.LaTeX2Unicode;
import fastparse.core.Parsed;
import fastparse.Parsed;

/**
* Adapter class for the latex2unicode lib. This is an alternative to our LatexToUnicode class
Expand Down

0 comments on commit d7fbd59

Please sign in to comment.