diff --git a/.gitignore b/.gitignore index b2d0f28..e6102ba 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,6 @@ target/ nodeDocumentation.json portDocumentation.json splashIcons.json +migrations.json .tycho-consumer-pom.xml +lib-download/ diff --git a/application/META-INF/MANIFEST.MF b/application/META-INF/MANIFEST.MF index c00f3c1..f920423 100644 --- a/application/META-INF/MANIFEST.MF +++ b/application/META-INF/MANIFEST.MF @@ -14,7 +14,10 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.6.0,5.0.0)", org.knime.product;bundle-version="[4.7.0,6.0.0)", org.apache.log4j;bundle-version="[1.2.0,2.0.0)", com.google.gson;bundle-version="[2.8.6,3.0.0)", - org.knime.workflow.migration;bundle-version="[4.7.0,6.0.0)", - org.mockito.mockito-core;bundle-version="[2.28.2,3.0.0)" -Bundle-ClassPath: . + org.knime.workflow.migration;bundle-version="[4.7.0,6.0.0)" +Bundle-ClassPath: ., + lib-download/mockito-core.jar, + lib-download/byte-buddy.jar, + lib-download/byte-buddy-agent.jar, + lib-download/objenesis.jar Bundle-ActivationPolicy: lazy diff --git a/application/build.properties b/application/build.properties index 2cde7ea..14c8a1e 100644 --- a/application/build.properties +++ b/application/build.properties @@ -3,4 +3,8 @@ source.. = src/,\ bin.includes = META-INF/,\ .,\ plugin.xml,\ - resources/ + resources/,\ + lib-download/mockito-core.jar,\ + lib-download/byte-buddy.jar,\ + lib-download/byte-buddy-agent.jar,\ + lib-download/objenesis.jar diff --git a/application/pom.xml b/application/pom.xml index 15d7ba2..dca0aeb 100644 --- a/application/pom.xml +++ b/application/pom.xml @@ -13,4 +13,27 @@ 1.14.0-SNAPSHOT + + + + de.philippkatz.maven.plugins + dependency-resolver-plugin + 2.0.0 + + + org.mockito:mockito-core:2.28.2 + + + + + initialize + + resolve-dependencies + + + + + + +