forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fileChooserRefactor
* master: define xjc input/ouput dir (subsequent builds will be faster) (JabRef#1628) Consistent file name casing (and other localization improvements) (JabRef#1629) Builds are now stored via build-upload.jabref.org Some enhancements and cleanups related to dates (JabRef#1575) changes should be tested manually Cleanup FindFile and asssociated tests (JabRef#1596) More field names and a method (JabRef#1627) Moved, removed, and used String constants (JabRef#1618) Updated preview entries (JabRef#1606) Improved LaTeX to Unicode/HTML formatters to output more sensible values for unknown commands (JabRef#1622) Fixed JabRef#636 by using DOICheck and DOIStrip in export filters (JabRef#1624) Converted a few getField to getFieldOptional (JabRef#1625)
- Loading branch information
Showing
194 changed files
with
1,801 additions
and
1,789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
|
||
configurations { | ||
xjc | ||
} | ||
xjc | ||
} | ||
|
||
dependencies { | ||
xjc group: 'com.sun.xml.bind', name: 'jaxb-xjc', version: '2.2.4-1' | ||
xjc 'com.sun.xml.bind:jaxb-xjc:2.2.4-1' | ||
} | ||
|
||
task xjc () << { | ||
ant.taskdef(name: 'xjc', classname: 'com.sun.tools.xjc.XJCTask', classpath: configurations.xjc.asPath) | ||
|
||
ant.xjc(destdir: 'src/main/gen/', package: 'net.sf.jabref.importer.fileformat.medline'){ | ||
schema(dir: 'src/main/resources/xjc/medline', includes: 'medline.xsd') | ||
} | ||
task xjc { | ||
inputs.dir "src/main/resources/xjc/medline/" | ||
outputs.dir "src/main/gen/net/sf/jabref/importer/fileformat/medline" | ||
|
||
ant.taskdef(name: 'xjc', classname: 'com.sun.tools.xjc.XJCTask', classpath: configurations.xjc.asPath) | ||
|
||
doLast { | ||
ant.xjc(destdir: 'src/main/gen/', package: 'net.sf.jabref.importer.fileformat.medline') { | ||
schema(dir: 'src/main/resources/xjc/medline', includes: 'medline.xsd') | ||
} | ||
} | ||
} | ||
|
||
tasks. compileJava.dependsOn xjc | ||
tasks.compileJava.dependsOn xjc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.