@@ -19,7 +19,7 @@ public abstract class StickyNoteLoader {
1919 private static final ConcurrentHashMap <Dependency , CompletableFuture <Void >> loadingLibraries = new ConcurrentHashMap <>();
2020 private static final ExecutorService executorService = Executors .newWorkStealingPool (Runtime .getRuntime ().availableProcessors ());
2121 private static final ScheduledExecutorService scheduler = Executors .newScheduledThreadPool (1 );
22- public static final List <String > exclusions = Arrays .asList ("kotlin-stdlib" , "kotlin-reflect" , "kotlin" , "kotlin-stdlib-jdk8" , "kotlin-stdlib-jdk7" , "kotlinx" , "kotlinx-coroutines" , "kotlinx-coroutines-core-jvm" , "takenaka" , "mappings" , "gson" );
22+ public static final List <String > exclusions = Arrays .asList ("kotlin-stdlib" , "kotlin-reflect" , "kotlin" , "kotlin-stdlib-jdk8" , "kotlin-stdlib-jdk7" , "kotlinx" , "kotlinx-coroutines" , "kotlinx-coroutines-core-jvm" , "takenaka" , "mappings" , "gson" , "exposed" , "adventure" );
2323 public static final Map <String , String > relocations = new HashMap <>();
2424
2525 private final List <String > transitiveExcluded = Arrays .asList ("xseries" , "stickynote" );
@@ -55,9 +55,13 @@ public void load(String id, File dataDirectory, Logger logger, LibraryManager li
5555 TransitiveDependencyHelper transitiveDependencyHelper = new TransitiveDependencyHelper (libraryManager , libDirectory .toPath ());
5656
5757 relocations .put ("com{}mysql" , relocationTo + "{}lib{}mysql" );
58+ /*String kot = "kot";
59+ String lin = "lon";
60+ relocations.put(kot + lin.replace("o", "i"), relocationTo + "{}lib{}kotlin");*/
61+
5862// relocations.put("org{}sqlite", relocationTo + "{}lib{}sqlite");
5963 relocations .put ("kotlinx{}coroutines" , relocationTo + "{}lib{}kotlinx{}coroutines" );
60- relocations .put ("org{}jetbrains{}exposed" , relocationTo + "{}lib{}exposed" );
64+ // relocations.put("org{}jetbrains{}exposed", relocationTo + "{}lib{}exposed");
6165
6266 DependencyCache dependencyCache = new DependencyCache (id , libDirectory );
6367 Set <Dependency > cachedDependencies = new HashSet <>(dependencyCache .loadCache ());
0 commit comments