Codebase list jd-gui / b925383
Merge pull request #274 from lhaeger/jdk11-compat Add OpenJDK11 compatibility Emmanuel Dupuy authored 4 years ago GitHub committed 4 years ago
3 changed file(s) with 3 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
104104 injars jar.archivePath
105105 outjars 'build/libs/' + project.name + '-' + project.version + '-min.jar'
106106 libraryjars System.getProperty('java.home') + '/lib/rt.jar'
107 libraryjars System.getProperty('java.home') + '/jmods/'
107108 }
108109
109110 // Java executable wrapper for Windows //
00 apply plugin: 'java'
11
22 dependencies {
3 compile 'com.fifesoft:rsyntaxtextarea:2.5.6'
3 compile 'com.fifesoft:rsyntaxtextarea:3.0.4'
44 compile 'org.ow2.asm:asm:7.1'
55 compile 'org.jd:jd-core:' + parent.jdCoreVersion
66 compile project(':api')
2626 if (textArea.getSelectionStart() == textArea.getSelectionEnd()) {
2727 getToolkit().getSystemClipboard().setContents(new StringSelection(""), null);
2828 } else {
29 textArea.copyAsRtf();
29 textArea.copyAsStyledText();
3030 }
3131 }
3232