Skip to content

Commit

Permalink
Merge pull request #5249 from JabRef/intellj
Browse files Browse the repository at this point in the history
Make it easier to compile with intellj
  • Loading branch information
Siedlerchr authored Aug 30, 2019
2 parents 84436d7 + 9e2bed0 commit 66b7fe3
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ snap/.snapcraft/
ui/

# IntelliJ IDEA
.idea/
.idea/*
!.idea/runConfigurations/
*.ipr
*.iml

Expand Down
13 changes: 13 additions & 0 deletions .idea/runConfigurations/JabRef_Main.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 15 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {
id 'com.github.johnrengelman.shadow' version '5.1.0'
id "com.simonharrer.modernizer" version '1.8.0-1'
id 'me.champeau.gradle.jmh' version '0.4.8'
id 'net.ltgt.errorprone' version '0.8.1'
//id 'net.ltgt.errorprone' version '0.8.1'
id 'com.github.ben-manes.versions' version '0.22.0'
id 'org.javamodularity.moduleplugin' version '1.5.0'
id 'org.openjfx.javafxplugin' version '0.0.8'
Expand Down Expand Up @@ -99,7 +99,7 @@ repositories {
}

configurations {
errorprone
//errorprone
libreoffice

// TODO: Remove the following workaround for split error messages such as
Expand Down Expand Up @@ -185,9 +185,20 @@ dependencies {
compile group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '2.3.2'
compile group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.2'

compile 'com.github.tomtung:latex2unicode_2.12:0.2.6'
compile ('com.github.tomtung:latex2unicode_2.12:0.2.6') {
exclude module: 'fastparse_2.12'
}

errorprone 'com.google.errorprone:error_prone_core:2.3.2'
/*
TODO: Reenable error prone as soon as https://github.com/google/error-prone/issues/1210 is fixed
errorprone ('com.google.errorprone:error_prone_core:2.3.2') {
exclude module: "jsr305"
exclude group: 'org.checkerframework', module: 'checker-qual'
exclude group: 'com.google.errorprone', module: 'error_prone_annotation'
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
exclude group: 'com.google.errorprone', module: 'error_prone_check_api'
}
*/

compile group: 'com.microsoft.azure', name: 'applicationinsights-core', version: '2.4.1'
compile group: 'com.microsoft.azure', name: 'applicationinsights-logging-log4j2', version: '2.4.1'
Expand Down

0 comments on commit 66b7fe3

Please sign in to comment.