ref #9359 try to fix compile error in TaxEditor due to missing objenesis class
authorAndreas Müller <a.mueller@bgbm.org>
Thu, 4 Feb 2021 21:46:02 +0000 (22:46 +0100)
committerAndreas Müller <a.mueller@bgbm.org>
Thu, 4 Feb 2021 21:46:31 +0000 (22:46 +0100)
eu.etaxonomy.taxeditor.printpublisher/META-INF/MANIFEST.MF
eu.etaxonomy.taxeditor.printpublisher/build.properties
eu.etaxonomy.taxeditor.printpublisher/lib/objenesis-3.1.jar [new file with mode: 0644]
eu.etaxonomy.taxeditor.printpublisher/pom.xml

index cbc636f5c26b95d83583d3d3b2bdbf1fa3e3d210..9118465e34ff7a1ef24e36f6b0c6bd8dc5c33b4b 100644 (file)
@@ -50,6 +50,7 @@ Require-Bundle: org.eclipse.osgi,
 Bundle-ClassPath: .,
  lib/cdmlib-print-5.20.0-SNAPSHOT.jar,
  lib/cdmlib-remote-5.20.0-SNAPSHOT.jar
+ lib/objenesis-3.1.jar
 Import-Package: org.apache.log4j,
  org.eclipse.core.runtime,
  org.eclipse.core.runtime.jobs,
index a7ce066e4204721a1326c524692685f2e8be6d00..a3a74a51404f3c1f560ee9f5c7db9572e2789daa 100644 (file)
@@ -4,5 +4,6 @@ bin.includes = META-INF/,\
                plugin.xml,\
                lib/cdmlib-print-5.20.0-SNAPSHOT.jar,\
                lib/cdmlib-remote-5.20.0-SNAPSHOT.jar,\
+               lib/objenesis-3.1.jar,\
                OSGI-INF/l10n/bundle.properties,\
                OSGI-INF/l10n/bundle_de.properties,\
diff --git a/eu.etaxonomy.taxeditor.printpublisher/lib/objenesis-3.1.jar b/eu.etaxonomy.taxeditor.printpublisher/lib/objenesis-3.1.jar
new file mode 100644 (file)
index 0000000..e6be642
Binary files /dev/null and b/eu.etaxonomy.taxeditor.printpublisher/lib/objenesis-3.1.jar differ
index 936d4025c6845c40ac2218b0f2918be7388a0625..825a64fd355a71ad06da075148bd7c9e39e63389 100644 (file)
@@ -47,7 +47,7 @@
                    </goals>
                    <configuration>
                      <includeArtifactIds>
-                       fop
+                       fop,objenesis
                      </includeArtifactIds>
                      <outputDirectory>
                        ${basedir}/lib
                <artifactId>fop</artifactId>
                <version>2.5</version>
         </dependency>
+        <!-- required for dozer, which is probably loaded as spring bean, TODO remove bean -->
+        <dependency>
+            <groupId>org.objenesis</groupId>
+            <artifactId>objenesis</artifactId>
+            <version>3.1</version>
+        </dependency>
     </dependencies>
 </project>