├── .gitignore ├── .idea ├── .gitignore ├── gradle.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── .java-version ├── .run └── Run IDE with Plugin.run.xml ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main ├── kotlin └── org │ └── le1a │ └── jarlibsconsolidator │ └── AddJarDependenciesAction.kt └── resources └── META-INF ├── plugin.xml ├── pluginIcon.svg └── pluginIcon.svg.bak.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/org/le1a/jarlibsconsolidator/AddJarDependenciesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/src/main/kotlin/org/le1a/jarlibsconsolidator/AddJarDependenciesAction.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg.bak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Le1a/JarLibsConsolidator/HEAD/src/main/resources/META-INF/pluginIcon.svg.bak.svg --------------------------------------------------------------------------------