From: remillet Date: Thu, 6 Oct 2016 21:24:38 +0000 (-0700) Subject: CSPACE-7037: Upate sources to compile with Nuxeo 7 libraries. Adding Nuxeo 7 server... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=0bbbf0a89cdd37e4e64e41e000ef41774d00306c;p=tmp%2Fjakarta-migration.git CSPACE-7037: Upate sources to compile with Nuxeo 7 libraries. Adding Nuxeo 7 server folder with updated libs and jars. --- diff --git a/.gitignore b/.gitignore index 33e3e3a26..9465910e7 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,5 @@ target .settings .classpath .project +.idea/ diff --git a/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/AddThumbnailUnrestricted.java b/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/AddThumbnailUnrestricted.java index a424edf25..f43c46722 100644 --- a/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/AddThumbnailUnrestricted.java +++ b/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/AddThumbnailUnrestricted.java @@ -94,7 +94,8 @@ public class AddThumbnailUnrestricted extends UnrestrictedSessionRunner { String result = null; // Compute the digest - result = fileManager.computeDigest(blob); // REM - Warning: Why is this operation so slow? +// result = fileManager.computeDigest(blob); // REM - Warning: Why is this operation so slow? + result = blob.getDigest(); return result; } diff --git a/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/ThumbnailConverter.java b/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/ThumbnailConverter.java index 001792546..b8e23e59d 100644 --- a/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/ThumbnailConverter.java +++ b/3rdparty/nuxeo/nuxeo-platform-thumbnail/src/main/java/org/collectionspace/services/nuxeo/extension/thumbnail/ThumbnailConverter.java @@ -10,12 +10,12 @@ import org.apache.commons.logging.LogFactory; import org.nuxeo.ecm.core.api.Blob; import org.nuxeo.ecm.core.api.blobholder.BlobHolder; import org.nuxeo.ecm.core.api.impl.blob.FileBlob; -import org.nuxeo.ecm.core.api.impl.blob.StreamingBlob; +//import org.nuxeo.ecm.core.api.impl.blob.StreamingBlob; import org.nuxeo.ecm.core.convert.api.ConversionException; import org.nuxeo.ecm.core.convert.cache.SimpleCachableBlobHolder; import org.nuxeo.ecm.core.convert.extension.Converter; import org.nuxeo.ecm.core.convert.extension.ConverterDescriptor; -import org.nuxeo.ecm.core.storage.sql.coremodel.SQLBlob; +//import org.nuxeo.ecm.core.storage.sql.coremodel.SQLBlob; import org.nuxeo.ecm.platform.commandline.executor.api.CmdParameters; import org.nuxeo.ecm.platform.commandline.executor.api.CommandAvailability; import org.nuxeo.ecm.platform.commandline.executor.api.CommandLineExecutorService; @@ -23,8 +23,8 @@ import org.nuxeo.ecm.platform.commandline.executor.api.ExecResult; import org.nuxeo.ecm.platform.picture.core.im.IMImageUtils; import org.nuxeo.runtime.api.Framework; -import org.nuxeo.runtime.services.streaming.FileSource; -import org.nuxeo.runtime.services.streaming.StreamSource; +//import org.nuxeo.runtime.services.streaming.FileSource; +//import org.nuxeo.runtime.services.streaming.StreamSource; public class ThumbnailConverter extends IMImageUtils implements Converter { private static final Log logger = LogFactory.getLog(ThumbnailConverter.class); @@ -46,19 +46,22 @@ public class ThumbnailConverter extends IMImageUtils implements Converter { File inputFile = null; if (blob instanceof FileBlob) { inputFile = ((FileBlob) blob).getFile(); - } else if (blob instanceof SQLBlob) { - StreamSource source = ((SQLBlob) blob).getBinary() - .getStreamSource(); - inputFile = ((FileSource) source).getFile(); - } else if (blob instanceof StreamingBlob) { - StreamingBlob streamingBlob = ((StreamingBlob) blob); - if (!streamingBlob.isPersistent()) { - streamingBlob.persist(); - } - StreamSource source = streamingBlob.getStreamSource(); - inputFile = ((FileSource) source).getFile(); } +// else if (blob instanceof SQLBlob) { +// StreamSource source = ((SQLBlob) blob).getBinary() +// .getStreamSource(); +// inputFile = ((FileSource) source).getFile(); +// } else if (blob instanceof StreamingBlob) { +// StreamingBlob streamingBlob = ((StreamingBlob) blob); +// if (!streamingBlob.isPersistent()) { +// streamingBlob.persist(); +// } +// StreamSource source = streamingBlob.getStreamSource(); +// inputFile = ((FileSource) source).getFile(); +// } + if (inputFile == null) { + logger.error("Blob from blob holder was null."); return null; // Add a log message here } CmdParameters params = new CmdParameters(); diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/README.txt b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/README.txt new file mode 100644 index 000000000..08bbdd46b --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/README.txt @@ -0,0 +1,2 @@ +This folder contains the Nuxeo modules +These modules are required to run the nuxeo framework diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-automation-io-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-automation-io-7.10.jar new file mode 100644 index 000000000..49321ecb1 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-automation-io-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-common-7.10-HF03.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-common-7.10-HF03.jar new file mode 100644 index 000000000..db8da8065 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-common-7.10-HF03.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-7.10-HF16.jar new file mode 100644 index 000000000..3bd8d6956 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-api-7.10-HF13.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-api-7.10-HF13.jar new file mode 100644 index 000000000..2f4d08379 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-api-7.10-HF13.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-binarymanager-s3-6.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-binarymanager-s3-6.0.jar new file mode 100644 index 000000000..4eecfd0b9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-binarymanager-s3-6.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-cache-7.10-HF14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-cache-7.10-HF14.jar new file mode 100644 index 000000000..db5e6b27b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-cache-7.10-HF14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-7.10-HF14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-7.10-HF14.jar new file mode 100644 index 000000000..abff6bd2b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-7.10-HF14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-api-7.10.jar new file mode 100644 index 000000000..98ec2ea74 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-plugins-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-plugins-7.10.jar new file mode 100644 index 000000000..74eabe114 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-convert-plugins-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-event-7.10-HF11.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-event-7.10-HF11.jar new file mode 100644 index 000000000..e9c71c404 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-event-7.10-HF11.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-io-7.10-HF10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-io-7.10-HF10.jar new file mode 100644 index 000000000..39f224972 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-io-7.10-HF10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-management-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-management-7.10.jar new file mode 100644 index 000000000..a4b117ddf Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-management-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-management-jtajca-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-management-jtajca-7.10-HF16.jar new file mode 100644 index 000000000..f9a1183ae Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-management-jtajca-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-mimetype-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-mimetype-7.10.jar new file mode 100644 index 000000000..df908caf8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-mimetype-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-persistence-7.10-HF06.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-persistence-7.10-HF06.jar new file mode 100644 index 000000000..04473b3a4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-persistence-7.10-HF06.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-query-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-query-7.10.jar new file mode 100644 index 000000000..7d5be37ee Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-query-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-redis-7.10-HF08.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-redis-7.10-HF08.jar new file mode 100644 index 000000000..eda6bf6cb Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-redis-7.10-HF08.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-schema-7.10-HF05.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-schema-7.10-HF05.jar new file mode 100644 index 000000000..da358d675 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-schema-7.10-HF05.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-7.10-HF09.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-7.10-HF09.jar new file mode 100644 index 000000000..3d261840b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-7.10-HF09.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-dbs-7.10-HF15.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-dbs-7.10-HF15.jar new file mode 100644 index 000000000..22e1db80e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-dbs-7.10-HF15.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-mongodb-7.10-HF05.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-mongodb-7.10-HF05.jar new file mode 100644 index 000000000..87bf07286 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-mongodb-7.10-HF05.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-7.10-HF16.jar new file mode 100644 index 000000000..d25e137f1 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-management-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-management-7.10.jar new file mode 100644 index 000000000..451906f02 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-management-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-ra-7.10-HF01.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-ra-7.10-HF01.jar new file mode 100644 index 000000000..c1aa7737e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-core-storage-sql-ra-7.10-HF01.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-dmk-adaptor-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-dmk-adaptor-7.10.jar new file mode 100644 index 000000000..806460c25 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-dmk-adaptor-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-elasticsearch-core-7.10-HF15.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-elasticsearch-core-7.10-HF15.jar new file mode 100644 index 000000000..8533f005d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-elasticsearch-core-7.10-HF15.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-invite-7.10-HF02.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-invite-7.10-HF02.jar new file mode 100644 index 000000000..d051649fc Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-invite-7.10-HF02.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-launcher-commons-7.10-HF15.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-launcher-commons-7.10-HF15.jar new file mode 100644 index 000000000..2ae778a55 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-launcher-commons-7.10-HF15.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-logs-viewer-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-logs-viewer-7.10.jar new file mode 100644 index 000000000..03a4afa08 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-logs-viewer-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-opencmis-bindings-7.10-HF07.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-opencmis-bindings-7.10-HF07.jar new file mode 100644 index 000000000..536da96f3 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-opencmis-bindings-7.10-HF07.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-opencmis-impl-7.10-HF14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-opencmis-impl-7.10-HF14.jar new file mode 100644 index 000000000..6ec2fda3a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-opencmis-impl-7.10-HF14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-7.10.jar new file mode 100644 index 000000000..7fbc397bc Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-api-7.10.jar new file mode 100644 index 000000000..49e890d0c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-commandline-executor-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-commandline-executor-7.10.jar new file mode 100644 index 000000000..60e4a1dfb Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-commandline-executor-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-convert-7.10-HF08.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-convert-7.10-HF08.jar new file mode 100644 index 000000000..a081b1ebc Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-convert-7.10-HF08.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-default-config-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-default-config-7.10.jar new file mode 100644 index 000000000..004c33a03 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-default-config-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-dublincore-7.10-HF13.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-dublincore-7.10-HF13.jar new file mode 100644 index 000000000..28b3353ce Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-dublincore-7.10-HF13.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-el-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-el-7.10.jar new file mode 100644 index 000000000..236780261 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-el-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-api-7.10.jar new file mode 100644 index 000000000..52e925693 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-core-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-core-7.10.jar new file mode 100644 index 000000000..e8d8c9792 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-core-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-core-listener-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-core-listener-7.10.jar new file mode 100644 index 000000000..2898a383b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-filemanager-core-listener-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-htmlsanitizer-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-htmlsanitizer-7.10.jar new file mode 100644 index 000000000..8d72ea911 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-htmlsanitizer-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-api-7.10.jar new file mode 100644 index 000000000..a313ffeb9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-convert-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-convert-7.10.jar new file mode 100644 index 000000000..9b1726be4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-convert-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-core-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-core-7.10.jar new file mode 100644 index 000000000..9658857f3 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-core-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-jsf-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-jsf-7.10.jar new file mode 100644 index 000000000..6ef196add Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-jsf-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-preview-6.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-preview-6.0.jar new file mode 100644 index 000000000..4e2cdced1 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-imaging-preview-6.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-api-7.10.jar new file mode 100644 index 000000000..069f9cdec Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-client-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-client-7.10.jar new file mode 100644 index 000000000..c05e53306 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-client-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-core-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-core-7.10.jar new file mode 100644 index 000000000..be6fafddc Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-io-core-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-lang-7.10-HF14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-lang-7.10-HF14.jar new file mode 100644 index 000000000..50f798114 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-lang-7.10-HF14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-lang-ext-7.10-HF08.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-lang-ext-7.10-HF08.jar new file mode 100644 index 000000000..809e0ccb2 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-lang-ext-7.10-HF08.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-7.10.jar new file mode 100644 index 000000000..992132684 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-default-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-default-7.10.jar new file mode 100644 index 000000000..97d5f3dcd Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-default-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-digest-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-digest-7.10.jar new file mode 100644 index 000000000..2a3b40cb9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-digest-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-token-7.10-HF14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-token-7.10-HF14.jar new file mode 100644 index 000000000..80ba0bb63 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-login-token-7.10-HF14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-mimetype-api-6.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-mimetype-api-6.0.jar new file mode 100644 index 000000000..4ddaeaace Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-mimetype-api-6.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-mimetype-core-6.0-HF18.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-mimetype-core-6.0-HF18.jar new file mode 100644 index 000000000..5c9e898e3 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-mimetype-core-6.0-HF18.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-oauth-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-oauth-7.10-HF16.jar new file mode 100644 index 000000000..b148aca6d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-oauth-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-query-api-7.10-HF08.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-query-api-7.10-HF08.jar new file mode 100644 index 000000000..2a2c0c112 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-query-api-7.10-HF08.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-relations-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-relations-api-7.10.jar new file mode 100644 index 000000000..a809ec01d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-relations-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-search-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-search-api-7.10.jar new file mode 100644 index 000000000..3f5fcae6a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-search-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-tag-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-tag-api-7.10.jar new file mode 100644 index 000000000..6d37b66bb Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-tag-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-types-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-types-api-7.10.jar new file mode 100644 index 000000000..fafbda875 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-types-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-types-core-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-types-core-7.10.jar new file mode 100644 index 000000000..95a885e5b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-types-core-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-uidgen-core-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-uidgen-core-7.10.jar new file mode 100644 index 000000000..afc9e6c70 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-uidgen-core-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-url-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-url-api-7.10.jar new file mode 100644 index 000000000..d69194b96 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-url-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-url-core-7.10-HF01.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-url-core-7.10-HF01.jar new file mode 100644 index 000000000..7fc8f10fb Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-url-core-7.10-HF01.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-versioning-api-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-versioning-api-7.10.jar new file mode 100644 index 000000000..e036d2919 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-versioning-api-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-versioning-core-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-versioning-core-7.10.jar new file mode 100644 index 000000000..c1d45a525 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-platform-versioning-core-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-reindex-fulltext-6.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-reindex-fulltext-6.0.jar new file mode 100644 index 000000000..237d39700 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-reindex-fulltext-6.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-7.10-HF14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-7.10-HF14.jar new file mode 100644 index 000000000..6ff2d146e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-7.10-HF14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-datasource-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-datasource-7.10-HF16.jar new file mode 100644 index 000000000..9d524c710 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-datasource-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-deploy-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-deploy-7.10.jar new file mode 100644 index 000000000..eb91e1b91 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-deploy-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-jtajca-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-jtajca-7.10-HF16.jar new file mode 100644 index 000000000..d89527390 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-jtajca-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-management-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-management-7.10.jar new file mode 100644 index 000000000..4fd95dd0c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-management-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-metrics-7.10-HF16.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-metrics-7.10-HF16.jar new file mode 100644 index 000000000..b7b8b6516 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-metrics-7.10-HF16.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-osgi-7.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-osgi-7.10.jar new file mode 100644 index 000000000..2da3139a4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-osgi-7.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-reload-7.10-HF08.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-reload-7.10-HF08.jar new file mode 100644 index 000000000..b956626f9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/nuxeo-runtime-reload-7.10-HF08.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/pom.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/pom.xml new file mode 100644 index 000000000..e8c4f6ad4 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/bundles/pom.xml @@ -0,0 +1,131 @@ + + 4.0.0 + + + org.nuxeo.ecm.distribution + nuxeo-distribution + 6.0 + ../pom.xml + + + nuxeo-distribution-tomcat + pom + Nuxeo Tomcat Build + Package Nuxeo with Tomcat + + + + light + + + + + org.nuxeo.runtime + nuxeo-runtime-jtajca + + + org.nuxeo.runtime + nuxeo-runtime-datasource + + + org.nuxeo.lib.runtime + nuxeo-runtime-tomcat-adapter + + + org.nuxeo.ecm.core + nuxeo-core-management-jtajca + + + org.nuxeo.ecm.platform + nuxeo-platform-ws-sun-jaxws + + + org.slf4j + jcl-over-slf4j + + + log4j + log4j + + + org.elasticsearch + elasticsearch + + + + org.nuxeo.ecm.distribution + nuxeo-marketplace-dm + zip + provided + + + + + + all + + + true + + + + nuxeo-coreserver + + + coreserver + + + + nuxeo-cap + + cap + + + + + sdk + + + + release + + + + org.jboss.tattletale + tattletale-maven + + ${project.build.directory}/nuxeo-cap-${project.version}-tomcat/nxserver/lib + + + + + + + + + + + + org.nuxeo.build + ant-assembly-maven-plugin + + + ${basedir}/src/main/assemble/assembly.xml + + + + + + packaging + + build + + package + + + + + + + \ No newline at end of file diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/elasticsearch-classreplacer-config.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/elasticsearch-classreplacer-config.xml new file mode 100644 index 000000000..9854c1b7a --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/elasticsearch-classreplacer-config.xml @@ -0,0 +1,12 @@ + + + + + + + default_search + + + + diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/login-config.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/login-config.xml new file mode 100644 index 000000000..d63b7330b --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/login-config.xml @@ -0,0 +1,45 @@ + + + + + + Login modules used on JBoss + @author Bogdan Stefanescu (bs@nuxeo.com) + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/nuxeo-container.properties b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/nuxeo-container.properties new file mode 100644 index 000000000..003c8ded2 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/nuxeo-container.properties @@ -0,0 +1 @@ +NuxeoContainer.autoactivation=true diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/nuxeo.properties b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/nuxeo.properties new file mode 100644 index 000000000..6ad0f24db --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/nuxeo.properties @@ -0,0 +1,58 @@ +# application instance config +org.nuxeo.ecm.instance.host=localhost + +# enable/disable Elasticsearch +elasticsearch.enabled=false + +# runtime remoting config +org.nuxeo.runtime.server.locator=socket://0.0.0.0:62474/?datatype=nuxeo +org.nuxeo.runtime.server.enabled=false +org.nuxeo.runtime.server.host=${org.nuxeo.ecm.instance.host} + +# streaming config +org.nuxeo.runtime.streaming.isServer=false +org.nuxeo.runtime.streaming.serverLocator=socket://${org.nuxeo.ecm.instance.host}:62474/?datatype=nuxeo + +# runtime management config +org.nuxeo.runtime.management.exist=false +org.nuxeo.runtime.management.serverRmiPort=2100 + +# needed for the JNDI auto configuration of clients +# you need to change this if using JNDI through HTTP +nuxeo-client-jndi.java.naming.provider.url=jnp://%s:%s +nuxeo-client-jndi.java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory +nuxeo-client-jndi.java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces + +# for email attachment, to decode the encoded(utf) filenames. +mail.mime.decodefilename=true + +# LiveEdit configuration detection (client/server/both) +org.nuxeo.ecm.platform.liveedit.config=client + +# Uncomment to activate Nuxeo Runtime REST API for Management +# accessible via http://server:port/nuxeo/site/server/html on JBoss +#org.nuxeo.runtime.rest.management=true + +# size limit to use the specific download servlet for big files (use SI or IEC prefix) +#org.nuxeo.big.file.size.limit=5Mi + +### +# Older settings that were used with CollectionSpace and Nuxeo v5.5 +### + +#org.nuxeo.ecm.instance.name=Nuxeo 5.5 +#org.nuxeo.ecm.instance.description=Nuxeo ECM server + +# product config +#org.nuxeo.ecm.product.name=Nuxeo 5.5 +#org.nuxeo.ecm.product.version=5.5 + +# which sample to run +#org.nuxeo.ecm.sample.class=org.nuxeo.ecm.sample.streaming.StreamingExample + +# avoid initializing nuxeo relations at startup (for faster startup) +#org.nuxeo.ecm.platform.relations.initOnStartup=false + +# context path of the application +#org.nuxeo.ecm.contextPath=/nuxeo + diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-datasource-config.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-datasource-config.xml new file mode 100644 index 000000000..4887c1673 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-datasource-config.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + @DB_SERVER_HOSTNAME@ + @DB_JDBC_OPTIONS@ + @DB_PORT@ + @NUXEO_USER@ + @NUXEO_PW@ + + diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-elasticsearch-config.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-elasticsearch-config.xml new file mode 100644 index 000000000..33029f680 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-elasticsearch-config.xml @@ -0,0 +1,31 @@ + + + org.nuxeo.elasticsearch.ElasticSearchComponent + + + + + + + + %elasticSearchIndex_extensions% + + + diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-elasticsearch-extension.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-elasticsearch-extension.xml new file mode 100644 index 000000000..4302653a2 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-elasticsearch-extension.xml @@ -0,0 +1,175 @@ + + + + ecm:* + dc:* + ecm:binarytext + + + +{ + "analysis" : { + "filter" : { + "en_stem_filter" : { + "name" : "minimal_english", + "type" : "stemmer" + }, + "en_stop_filter" : { + "stopwords" : [ + "_english_" + ], + "type" : "stop" + }, + "fr_elision_filter" : { + "articles" : [ + "c", + "l", + "m", + "t", + "qu", + "n", + "s", + "j" + ], + "type" : "elision" + }, + "fr_stem_filter" : { + "name" : "minimal_french", + "type" : "stemmer" + }, + "fr_stop_filter" : { + "stopwords" : [ + "_french_" + ], + "type" : "stop" + } + }, + "tokenizer" : { + "path_tokenizer" : { + "delimiter" : "/", + "type" : "path_hierarchy" + } + }, + "analyzer" : { + "en_analyzer" : { + "alias" : "fulltext", + "filter" : [ + "lowercase", + "en_stop_filter", + "en_stem_filter", + "asciifolding" + ], + "type" : "custom", + "tokenizer" : "standard" + }, + "fr_analyzer" : { + "filter" : [ + "lowercase", + "fr_stop_filter", + "fr_stem_filter", + "asciifolding", + "fr_elision_filter" + ], + "type" : "custom", + "tokenizer" : "standard" + }, + "path_analyzer" : { + "type" : "custom", + "tokenizer" : "path_tokenizer" + }, + "default" : { + "type" : "custom", + "tokenizer" : "keyword" + } + } + } +} + + +{ + "_size" : { + "enabled" : true + }, + "_all" : { + "analyzer" : "fulltext" + }, + "properties" : { + "dc:title" : { + "type" : "multi_field", + "fields" : { + "dc:title" : { + "index" : "not_analyzed", + "type" : "string" + }, + "fulltext" : { + "boost": 2, + "type": "string", + "analyzer" : "fulltext" + } + } + }, + "dc:description" : { + "type" : "multi_field", + "fields" : { + "dc:description" : { + "index" : "no", + "include_in_all" : "true", + "type" : "string" + }, + "fulltext" : { + "boost": 1.5, + "type": "string", + "analyzer" : "fulltext" + } + } + }, + "note:note" : { + "type" : "multi_field", + "fields" : { + "note:note" : { + "index" : "no", + "include_in_all" : "true", + "type" : "string" + }, + "fulltext" : { + "type": "string", + "analyzer" : "fulltext" + } + } + }, + "ecm:binarytext*" : { + "type" : "string", + "analyzer" : "fulltext" + }, + "ecm:path" : { + "type" : "multi_field", + "fields" : { + "children" : { + "search_analyzer" : "keyword", + "index_analyzer" : "path_analyzer", + "type" : "string" + }, + "ecm:path" : { + "index" : "not_analyzed", + "type" : "string" + } + } + }, + "ecm:pos": { + "type": "integer" + }, + "dc:created": { + "format": "dateOptionalTime", + "type": "date" + }, + "dc:modified": { + "format": "dateOptionalTime", + "type": "date" + } + } +} + + + + \ No newline at end of file diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-repo-config.xml b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-repo-config.xml new file mode 100644 index 000000000..6b7ec696e --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/proto-repo-config.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + @XA_DATASOURCE@ + false + vcsconfig.sql.txt + + + varchar + + + + + + + dc:title + + + dc:description + + + + + @DB_SERVER_HOSTNAME@ + + @DB_JDBC_OPTIONS@ + @DB_PORT@ + @NUXEO_USER@ + @NUXEO_PW@ + + + \ No newline at end of file diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/s3binarymanager.properties b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/s3binarymanager.properties new file mode 100644 index 000000000..7eafeb461 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/s3binarymanager.properties @@ -0,0 +1,3 @@ +nuxeo.s3storage.bucket=__bucketname__ +nuxeo.s3storage.awsid=__AWSAccessKeyId__ +nuxeo.s3storage.awssecret=__AWSSecretKey__ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/vcsconfig.sql.txt b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/vcsconfig.sql.txt new file mode 100644 index 000000000..275fc1d65 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/config/vcsconfig.sql.txt @@ -0,0 +1,17 @@ +# +# A place to modify the Nuxeo database with SQL statements. +# See https://doc.nuxeo.com/display/ADMINDOC/VCS+Configuration#VCSConfiguration-DatabaseCreationOption +# + +#CATEGORY: afterTableCreation + +# +# Add a unique constraint to the report 'name' column of the reports_common table. +# +LOG.INFO Adding a unique constraint to the report 'name' column of the reports_common table + +#TEST: +SELECT constraint_name FROM information_schema.constraint_column_usage WHERE table_name = 'reports_common' AND constraint_name = 'reportname_unique'; + +#IF: emptyResult +ALTER TABLE reports_common add CONSTRAINT reportname_unique UNIQUE (name); diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/launcher.properties b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/launcher.properties new file mode 100644 index 000000000..3629c1aa8 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/launcher.properties @@ -0,0 +1 @@ +org.nuxeo.app.bundles=bundles/*:plugins/* diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/EditableImage-0.9.5.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/EditableImage-0.9.5.jar new file mode 100644 index 000000000..345d93241 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/EditableImage-0.9.5.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/FastInfoset-1.2.13.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/FastInfoset-1.2.13.jar new file mode 100644 index 000000000..933e4eeac Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/FastInfoset-1.2.13.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/Operations-0.9.5.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/Operations-0.9.5.jar new file mode 100644 index 000000000..09859cf3c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/Operations-0.9.5.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/README.txt b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/README.txt new file mode 100644 index 000000000..be3823d51 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/README.txt @@ -0,0 +1 @@ +This folder contains static libraries used by nuxeo components diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/activation-1.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/activation-1.1.jar new file mode 100644 index 000000000..53f82a1c4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/activation-1.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ant-1.7.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ant-1.7.0.jar new file mode 100644 index 000000000..0a56a58f9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ant-1.7.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ant-launcher-1.7.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ant-launcher-1.7.0.jar new file mode 100644 index 000000000..12a1e78d0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ant-launcher-1.7.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antisamy-1.5.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antisamy-1.5.3.jar new file mode 100644 index 000000000..97011b036 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antisamy-1.5.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antlr-2.7.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antlr-2.7.7.jar new file mode 100644 index 000000000..5e5f14b35 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antlr-2.7.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antlr-runtime-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antlr-runtime-3.1.3.jar new file mode 100644 index 000000000..b0a9ea69f Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/antlr-runtime-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/aopalliance-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/aopalliance-1.0.jar new file mode 100644 index 000000000..578b1a0c3 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/aopalliance-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-bootstrap-extract-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-bootstrap-extract-1.5.1.jar new file mode 100644 index 000000000..feb162dad Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-bootstrap-extract-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-btree-base-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-btree-base-1.5.1.jar new file mode 100644 index 000000000..ab0a1a90a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-btree-base-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-constants-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-constants-1.5.1.jar new file mode 100644 index 000000000..9cd68440e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-constants-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-core-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-core-1.5.1.jar new file mode 100644 index 000000000..d875f0a7b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-core-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-core-shared-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-core-shared-1.5.1.jar new file mode 100644 index 000000000..f682417ca Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-core-shared-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-jdbm-store-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-jdbm-store-1.5.1.jar new file mode 100644 index 000000000..012ed7c04 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-jdbm-store-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-kerberos-shared-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-kerberos-shared-1.5.1.jar new file mode 100644 index 000000000..625e4cf49 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-kerberos-shared-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-protocol-shared-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-protocol-shared-1.5.1.jar new file mode 100644 index 000000000..bebbb22df Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-protocol-shared-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-schema-bootstrap-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-schema-bootstrap-1.5.1.jar new file mode 100644 index 000000000..ae0c31ce4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-schema-bootstrap-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-schema-registries-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-schema-registries-1.5.1.jar new file mode 100644 index 000000000..1d703e4d8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-schema-registries-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-utils-1.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-utils-1.5.1.jar new file mode 100644 index 000000000..2942bc093 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/apacheds-utils-1.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/arq-2.8.8.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/arq-2.8.8.jar new file mode 100644 index 000000000..280f028fe Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/arq-2.8.8.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/asm-5.0.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/asm-5.0.3.jar new file mode 100644 index 000000000..573535b1d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/asm-5.0.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/asm-commons-4.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/asm-commons-4.1.jar new file mode 100644 index 000000000..6d95f2cd8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/asm-commons-4.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/aws-java-sdk-1.6.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/aws-java-sdk-1.6.4.jar new file mode 100644 index 000000000..bbb41b1c8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/aws-java-sdk-1.6.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-css-1.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-css-1.7.jar new file mode 100644 index 000000000..ef3013d07 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-css-1.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-ext-1.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-ext-1.7.jar new file mode 100644 index 000000000..57fb27327 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-ext-1.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-util-1.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-util-1.7.jar new file mode 100644 index 000000000..c50d1ff29 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/batik-util-1.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bcmail-jdk15-1.45.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bcmail-jdk15-1.45.jar new file mode 100644 index 000000000..f66e9a8b9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bcmail-jdk15-1.45.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bcprov-jdk15-1.45.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bcprov-jdk15-1.45.jar new file mode 100644 index 000000000..409070b03 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bcprov-jdk15-1.45.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bsh-2.0b4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bsh-2.0b4.jar new file mode 100644 index 000000000..36fe03d71 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/bsh-2.0b4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-api-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-api-0.13.0-NX1.jar new file mode 100644 index 000000000..f23753b7c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-api-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-bindings-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-bindings-0.13.0-NX1.jar new file mode 100644 index 000000000..2e7bd50c7 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-bindings-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-impl-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-impl-0.13.0-NX1.jar new file mode 100644 index 000000000..8f56c4125 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-client-impl-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-commons-api-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-commons-api-0.13.0-NX1.jar new file mode 100644 index 000000000..38b8caf0d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-commons-api-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-commons-impl-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-commons-impl-0.13.0-NX1.jar new file mode 100644 index 000000000..75ba29f60 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-commons-impl-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-server-bindings-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-server-bindings-0.13.0-NX1.jar new file mode 100644 index 000000000..d353d0f8d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-server-bindings-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-server-support-0.13.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-server-support-0.13.0-NX1.jar new file mode 100644 index 000000000..22f6ae539 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/chemistry-opencmis-server-support-0.13.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/com.noelios.restlet-1.0.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/com.noelios.restlet-1.0.7.jar new file mode 100644 index 000000000..98fabd00b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/com.noelios.restlet-1.0.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/com.noelios.restlet.ext.servlet-1.0.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/com.noelios.restlet.ext.servlet-1.0.7.jar new file mode 100644 index 000000000..d2a168c4c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/com.noelios.restlet.ext.servlet-1.0.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-beanutils-1.9.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-beanutils-1.9.2.jar new file mode 100644 index 000000000..7d075edf4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-beanutils-1.9.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-codec-1.9.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-codec-1.9.jar new file mode 100644 index 000000000..ef35f1c50 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-codec-1.9.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-collections-3.2.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-collections-3.2.2.jar new file mode 100644 index 000000000..fa5df82a6 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-collections-3.2.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-csv-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-csv-1.0.jar new file mode 100644 index 000000000..5f58e4016 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-csv-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-dbcp-1.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-dbcp-1.4.jar new file mode 100644 index 000000000..c4c1c4f28 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-dbcp-1.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-fileupload-1.3.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-fileupload-1.3.1.jar new file mode 100644 index 000000000..af0cda226 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-fileupload-1.3.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-httpclient-3.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-httpclient-3.1.jar new file mode 100644 index 000000000..7c59774ae Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-httpclient-3.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-io-2.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-io-2.4.jar new file mode 100644 index 000000000..90035a4fe Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-io-2.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-jexl-1.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-jexl-1.1.jar new file mode 100644 index 000000000..be3a7232c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-jexl-1.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-pool-1.5.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-pool-1.5.4.jar new file mode 100644 index 000000000..43edf9963 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-pool-1.5.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-pool2-2.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-pool2-2.3.jar new file mode 100644 index 000000000..5219e1cc2 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/commons-pool2-2.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/connector-api-1.5.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/connector-api-1.5.jar new file mode 100644 index 000000000..634178973 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/connector-api-1.5.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/core-1.0-b02.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/core-1.0-b02.jar new file mode 100644 index 000000000..21cc8c8fe Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/core-1.0-b02.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cors-filter-2.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cors-filter-2.4.jar new file mode 100644 index 000000000..24eda7bc6 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cors-filter-2.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cssparser-0.9.14.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cssparser-0.9.14.jar new file mode 100644 index 000000000..237f3b341 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cssparser-0.9.14.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-core-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-core-3.1.3.jar new file mode 100644 index 000000000..b434678f2 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-core-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-bindings-soap-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-bindings-soap-3.1.3.jar new file mode 100644 index 000000000..c82191557 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-bindings-soap-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-bindings-xml-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-bindings-xml-3.1.3.jar new file mode 100644 index 000000000..4ed232f30 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-bindings-xml-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-databinding-jaxb-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-databinding-jaxb-3.1.3.jar new file mode 100644 index 000000000..eca08cf5d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-databinding-jaxb-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-frontend-jaxws-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-frontend-jaxws-3.1.3.jar new file mode 100644 index 000000000..7a7982872 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-frontend-jaxws-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-frontend-simple-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-frontend-simple-3.1.3.jar new file mode 100644 index 000000000..d3a773bca Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-frontend-simple-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-transports-http-3.1.3-NX2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-transports-http-3.1.3-NX2.jar new file mode 100644 index 000000000..f3bdcf9a5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-transports-http-3.1.3-NX2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-ws-addr-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-ws-addr-3.1.3.jar new file mode 100644 index 000000000..8add3ff8f Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-ws-addr-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-ws-policy-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-ws-policy-3.1.3.jar new file mode 100644 index 000000000..83fd96786 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-ws-policy-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-wsdl-3.1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-wsdl-3.1.3.jar new file mode 100644 index 000000000..a78497bc6 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/cxf-rt-wsdl-3.1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/dom4j-1.6.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/dom4j-1.6.1.jar new file mode 100644 index 000000000..c8c4dbb92 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/dom4j-1.6.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ehcache-core-2.5.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ehcache-core-2.5.2.jar new file mode 100644 index 000000000..a34b51e28 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ehcache-core-2.5.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ejb-api-3.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ejb-api-3.0.jar new file mode 100644 index 000000000..e9a86d1ae Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ejb-api-3.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/elasticsearch-1.5.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/elasticsearch-1.5.2.jar new file mode 100644 index 000000000..fd96ed5b3 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/elasticsearch-1.5.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ezmorph-1.0.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ezmorph-1.0.4.jar new file mode 100644 index 000000000..7625af67e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ezmorph-1.0.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/fontbox-1.8.9.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/fontbox-1.8.9.jar new file mode 100644 index 000000000..05062f156 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/fontbox-1.8.9.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/geronimo-connector-2.2.1-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/geronimo-connector-2.2.1-NX1.jar new file mode 100644 index 000000000..b6478c1bd Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/geronimo-connector-2.2.1-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/geronimo-transaction-2.2.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/geronimo-transaction-2.2.1.jar new file mode 100644 index 000000000..4747c6ced Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/geronimo-transaction-2.2.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-api-client-1.19.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-api-client-1.19.1.jar new file mode 100644 index 000000000..6e387e00d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-api-client-1.19.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-1.19.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-1.19.0.jar new file mode 100644 index 000000000..3204499a0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-1.19.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-jackson-1.19.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-jackson-1.19.0.jar new file mode 100644 index 000000000..393fd27ab Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-jackson-1.19.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-jackson2-1.19.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-jackson2-1.19.0.jar new file mode 100644 index 000000000..f60d0977f Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-http-client-jackson2-1.19.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-oauth-client-1.20.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-oauth-client-1.20.0.jar new file mode 100644 index 000000000..0cd857510 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/google-oauth-client-1.20.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/groovy-all-2.4.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/groovy-all-2.4.0.jar new file mode 100644 index 000000000..7afd20af9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/groovy-all-2.4.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/guava-18.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/guava-18.0.jar new file mode 100644 index 000000000..8f89e4901 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/guava-18.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/guice-3.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/guice-3.0.jar new file mode 100644 index 000000000..f313e2b08 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/guice-3.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/gwt-servlet-2.7.0-NX1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/gwt-servlet-2.7.0-NX1.jar new file mode 100644 index 000000000..439f911e0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/gwt-servlet-2.7.0-NX1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-annotations-3.4.0.GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-annotations-3.4.0.GA.jar new file mode 100644 index 000000000..24b1583cd Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-annotations-3.4.0.GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-commons-annotations-3.1.0.GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-commons-annotations-3.1.0.GA.jar new file mode 100644 index 000000000..e0ca90469 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-commons-annotations-3.1.0.GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-core-3.3.2.GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-core-3.3.2.GA.jar new file mode 100644 index 000000000..eda14b763 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-core-3.3.2.GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-entitymanager-3.4.0.GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-entitymanager-3.4.0.GA.jar new file mode 100644 index 000000000..662eab11c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-entitymanager-3.4.0.GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-validator-3.1.0.GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-validator-3.1.0.GA.jar new file mode 100644 index 000000000..760880c0c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hibernate-validator-3.1.0.GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/howl-1.0.1-1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/howl-1.0.1-1.jar new file mode 100644 index 000000000..b4ea5c62a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/howl-1.0.1-1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hsqldb-1.8.0.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hsqldb-1.8.0.1.jar new file mode 100644 index 000000000..35436d6e5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/hsqldb-1.8.0.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/httpclient-4.3.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/httpclient-4.3.3.jar new file mode 100644 index 000000000..6c46bffe4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/httpclient-4.3.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/httpcore-4.3.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/httpcore-4.3.3.jar new file mode 100644 index 000000000..a8747b0cf Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/httpcore-4.3.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/icu4j-51.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/icu4j-51.1.jar new file mode 100644 index 000000000..4cecb9cf7 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/icu4j-51.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/iri-0.8.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/iri-0.8.jar new file mode 100644 index 000000000..f096c689c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/iri-0.8.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/itext-2.1.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/itext-2.1.7.jar new file mode 100644 index 000000000..3f2c18822 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/itext-2.1.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/itext-rtf-2.1.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/itext-rtf-2.1.7.jar new file mode 100644 index 000000000..ba008955d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/itext-rtf-2.1.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jackson-core-asl-1.8.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jackson-core-asl-1.8.1.jar new file mode 100644 index 000000000..13574a4ed Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jackson-core-asl-1.8.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jackson-mapper-asl-1.8.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jackson-mapper-asl-1.8.1.jar new file mode 100644 index 000000000..83b684038 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jackson-mapper-asl-1.8.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaudiotagger-2.0.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaudiotagger-2.0.3.jar new file mode 100644 index 000000000..c206b0e6e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaudiotagger-2.0.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/java-cup-0.11a.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/java-cup-0.11a.jar new file mode 100644 index 000000000..09548810d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/java-cup-0.11a.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/java-property-utils-1.9.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/java-property-utils-1.9.1.jar new file mode 100644 index 000000000..4509552ea Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/java-property-utils-1.9.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javacc-4.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javacc-4.0.jar new file mode 100644 index 000000000..38f8426d5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javacc-4.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-core-2.5.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-core-2.5.0.jar new file mode 100644 index 000000000..35dd8ea70 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-core-2.5.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-jdbc3-2.5.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-jdbc3-2.5.0.jar new file mode 100644 index 000000000..26644bcf9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-jdbc3-2.5.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-jmx-2.5.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-jmx-2.5.0.jar new file mode 100644 index 000000000..d6698ed7b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javasimon-jmx-2.5.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javassist-3.20.0-GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javassist-3.20.0-GA.jar new file mode 100644 index 000000000..0f1ff725d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javassist-3.20.0-GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javax.inject-1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javax.inject-1.jar new file mode 100644 index 000000000..b2a9d0bf7 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/javax.inject-1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaxb-core-2.2.11.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaxb-core-2.2.11.jar new file mode 100644 index 000000000..f3c84126c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaxb-core-2.2.11.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaxb-impl-2.2.11.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaxb-impl-2.2.11.jar new file mode 100644 index 000000000..a5c5b23a5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jaxb-impl-2.2.11.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-el-1.0_02.CR6.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-el-1.0_02.CR6.jar new file mode 100644 index 000000000..b0c4c4895 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-el-1.0_02.CR6.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-2.3.1.Final.NX02.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-2.3.1.Final.NX02.jar new file mode 100644 index 000000000..cdf3ed532 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-2.3.1.Final.NX02.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-excel-2.3.1.Final.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-excel-2.3.1.Final.jar new file mode 100644 index 000000000..325750ea8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-excel-2.3.1.Final.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-pdf-2.3.1.Final.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-pdf-2.3.1.Final.jar new file mode 100644 index 000000000..4dd2acc3d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-pdf-2.3.1.Final.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-remoting-2.3.1.Final.NX02.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-remoting-2.3.1.Final.NX02.jar new file mode 100644 index 000000000..701aad47c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-remoting-2.3.1.Final.NX02.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-rss-2.3.1.Final.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-rss-2.3.1.Final.jar new file mode 100644 index 000000000..3b2dddd31 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-rss-2.3.1.Final.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-ui-2.3.1.Final.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-ui-2.3.1.Final.jar new file mode 100644 index 000000000..ced716fe7 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jboss-seam-ui-2.3.1.Final.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jcip-annotations-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jcip-annotations-1.0.jar new file mode 100644 index 000000000..06e9066b8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jcip-annotations-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jcommander-1.12.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jcommander-1.12.jar new file mode 100644 index 000000000..3d4f1fcf9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jcommander-1.12.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jdbm-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jdbm-1.0.jar new file mode 100644 index 000000000..2b63ae590 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jdbm-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jedis-2.7.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jedis-2.7.0.jar new file mode 100644 index 000000000..0d74ddc80 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jedis-2.7.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jempbox-1.8.9.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jempbox-1.8.9.jar new file mode 100644 index 000000000..29c35d073 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jempbox-1.8.9.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jena-2.6.4-NX.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jena-2.6.4-NX.jar new file mode 100644 index 000000000..6916a14e2 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jena-2.6.4-NX.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jericho-html-3.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jericho-html-3.2.jar new file mode 100644 index 000000000..64b0750fb Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jericho-html-3.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-core-1.18.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-core-1.18.3.jar new file mode 100644 index 000000000..c380e92dd Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-core-1.18.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-server-1.18.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-server-1.18.3.jar new file mode 100644 index 000000000..481b796ad Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-server-1.18.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-servlet-1.18.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-servlet-1.18.3.jar new file mode 100644 index 000000000..4acfd6678 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jersey-servlet-1.18.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jetty-6.1.26.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jetty-6.1.26.jar new file mode 100644 index 000000000..2cbe07aee Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jetty-6.1.26.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jetty-util-6.1.26.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jetty-util-6.1.26.jar new file mode 100644 index 000000000..cd237528a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jetty-util-6.1.26.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmd-0.8.1-tomasol-3e60e36137.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmd-0.8.1-tomasol-3e60e36137.jar new file mode 100644 index 000000000..b01a32189 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmd-0.8.1-tomasol-3e60e36137.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmimemagic-0.1.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmimemagic-0.1.2.jar new file mode 100644 index 000000000..be2aa43d0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmimemagic-0.1.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmock-2.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmock-2.5.1.jar new file mode 100644 index 000000000..3caa072b6 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmock-2.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmock-junit4-2.5.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmock-junit4-2.5.1.jar new file mode 100644 index 000000000..4b18f818b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jmock-junit4-2.5.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/joda-time-2.8.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/joda-time-2.8.2.jar new file mode 100644 index 000000000..05960ff12 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/joda-time-2.8.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jodconverter-core-3.0-NX10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jodconverter-core-3.0-NX10.jar new file mode 100644 index 000000000..81647a713 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jodconverter-core-3.0-NX10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/js-1.7R1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/js-1.7R1.jar new file mode 100644 index 000000000..c081d16b8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/js-1.7R1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsf-api-2.2.6.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsf-api-2.2.6.jar new file mode 100644 index 000000000..f937537e8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsf-api-2.2.6.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsf-impl-2.2.6-NX01.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsf-impl-2.2.6-NX01.jar new file mode 100644 index 000000000..075cf9d5a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsf-impl-2.2.6-NX01.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/json-20070829.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/json-20070829.jar new file mode 100644 index 000000000..6ac8fb841 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/json-20070829.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/json-lib-2.4-jdk15.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/json-lib-2.4-jdk15.jar new file mode 100644 index 000000000..68d4f3b09 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/json-lib-2.4-jdk15.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsr250-api-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsr250-api-1.0.jar new file mode 100644 index 000000000..c1f29bf84 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsr250-api-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsr305-1.3.9.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsr305-1.3.9.jar new file mode 100644 index 000000000..a9afc6619 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jsr305-1.3.9.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jstl-1.1.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jstl-1.1.2.jar new file mode 100644 index 000000000..a02abecc8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jstl-1.1.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jta-1.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jta-1.1.jar new file mode 100644 index 000000000..7736ec9f0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jta-1.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/juh-3.1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/juh-3.1.0.jar new file mode 100644 index 000000000..2be97e352 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/juh-3.1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jurt-3.1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jurt-3.1.0.jar new file mode 100644 index 000000000..a7e2b1e07 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jurt-3.1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jxl-2.6.12.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jxl-2.6.12.jar new file mode 100644 index 000000000..4a1fc64fc Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/jxl-2.6.12.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-analyzers-common-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-analyzers-common-4.10.4.jar new file mode 100644 index 000000000..701caeb79 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-analyzers-common-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-codecs-4.7.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-codecs-4.7.2.jar new file mode 100644 index 000000000..502df56e3 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-codecs-4.7.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-core-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-core-4.10.4.jar new file mode 100644 index 000000000..823664c48 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-core-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-grouping-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-grouping-4.10.4.jar new file mode 100644 index 000000000..0819b41d5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-grouping-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-highlighter-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-highlighter-4.10.4.jar new file mode 100644 index 000000000..b58e7dba4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-highlighter-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-join-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-join-4.10.4.jar new file mode 100644 index 000000000..3d3e4d323 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-join-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-memory-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-memory-4.10.4.jar new file mode 100644 index 000000000..362a68b4c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-memory-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-misc-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-misc-4.10.4.jar new file mode 100644 index 000000000..ee73cf764 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-misc-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-queries-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-queries-4.10.4.jar new file mode 100644 index 000000000..0920f774e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-queries-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-queryparser-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-queryparser-4.10.4.jar new file mode 100644 index 000000000..f9ac0e44b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-queryparser-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-sandbox-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-sandbox-4.10.4.jar new file mode 100644 index 000000000..b43a28787 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-sandbox-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-spatial-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-spatial-4.10.4.jar new file mode 100644 index 000000000..09cff6bed Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-spatial-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-suggest-4.10.4.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-suggest-4.10.4.jar new file mode 100644 index 000000000..6eb7a8bde Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/lucene-suggest-4.10.4.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metadata-extractor-2.3.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metadata-extractor-2.3.1.jar new file mode 100644 index 000000000..f5f6848e1 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metadata-extractor-2.3.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-core-3.0.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-core-3.0.0.jar new file mode 100644 index 000000000..2c5bdb61b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-core-3.0.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-graphite-3.0.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-graphite-3.0.0.jar new file mode 100644 index 000000000..db752f0c8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-graphite-3.0.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-jvm-3.0.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-jvm-3.0.0.jar new file mode 100644 index 000000000..93201b82f Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-jvm-3.0.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-log4j-3.0.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-log4j-3.0.0.jar new file mode 100644 index 000000000..27081f33a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/metrics-log4j-3.0.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mimepull-1.9.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mimepull-1.9.3.jar new file mode 100644 index 000000000..c3234556e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mimepull-1.9.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mina-core-1.1.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mina-core-1.1.2.jar new file mode 100644 index 000000000..a3ee3795d Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mina-core-1.1.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mongo-java-driver-3.2.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mongo-java-driver-3.2.2.jar new file mode 100644 index 000000000..a2016af3a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mongo-java-driver-3.2.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mvel2-2.2.4.FinalNX01.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mvel2-2.2.4.FinalNX01.jar new file mode 100644 index 000000000..8ef0f2cb5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/mvel2-2.2.4.FinalNX01.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/neethi-3.0.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/neethi-3.0.3.jar new file mode 100644 index 000000000..38b77ff34 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/neethi-3.0.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/nekohtml-1.9.12.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/nekohtml-1.9.12.jar new file mode 100644 index 000000000..8cc09e862 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/nekohtml-1.9.12.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oauth-20090531.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oauth-20090531.jar new file mode 100644 index 000000000..c57d59097 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oauth-20090531.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oauth-provider-20090531.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oauth-provider-20090531.jar new file mode 100644 index 000000000..91414606e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oauth-provider-20090531.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.core.jobs-3.5.0.v20100515.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.core.jobs-3.5.0.v20100515.jar new file mode 100644 index 000000000..c14557271 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.core.jobs-3.5.0.v20100515.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.equinox.common-3.6.0.v20100503.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.equinox.common-3.6.0.v20100503.jar new file mode 100644 index 000000000..b9800a7b5 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.equinox.common-3.6.0.v20100503.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.equinox.p2.cudf-1.17-NX.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.equinox.p2.cudf-1.17-NX.jar new file mode 100644 index 000000000..884c2d613 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.eclipse.equinox.p2.cudf-1.17-NX.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.osgi.compendium-4.2.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.osgi.compendium-4.2.0.jar new file mode 100644 index 000000000..93219d14c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.osgi.compendium-4.2.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.osgi.core-4.2.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.osgi.core-4.2.0.jar new file mode 100644 index 000000000..b986ac172 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.osgi.core-4.2.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.restlet-1.0.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.restlet-1.0.7.jar new file mode 100644 index 000000000..c86a22b7a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.restlet-1.0.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.restlet.ext.fileupload-1.0.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.restlet.ext.fileupload-1.0.7.jar new file mode 100644 index 000000000..b54c7b642 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.restlet.ext.fileupload-1.0.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.sat4j.core-2.3.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.sat4j.core-2.3.1.jar new file mode 100644 index 000000000..60db98d65 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.sat4j.core-2.3.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.sat4j.pb-2.3.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.sat4j.pb-2.3.1.jar new file mode 100644 index 000000000..03824bb8e Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/org.sat4j.pb-2.3.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oro-2.0.8.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oro-2.0.8.jar new file mode 100644 index 000000000..23488d260 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/oro-2.0.8.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/pdfbox-1.8.9.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/pdfbox-1.8.9.jar new file mode 100644 index 000000000..9b82e73ee Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/pdfbox-1.8.9.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/persistence-api-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/persistence-api-1.0.jar new file mode 100644 index 000000000..fe5dbcd47 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/persistence-api-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/phloc-commons-3.9.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/phloc-commons-3.9.2.jar new file mode 100644 index 000000000..f49e70c83 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/phloc-commons-3.9.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/phloc-css-3.3.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/phloc-css-3.3.1.jar new file mode 100644 index 000000000..2f0884527 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/phloc-css-3.3.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/plexus-utils-1.5.6.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/plexus-utils-1.5.6.jar new file mode 100644 index 000000000..ed6104e29 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/plexus-utils-1.5.6.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-3.10-FINAL.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-3.10-FINAL.jar new file mode 100644 index 000000000..8862e2175 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-3.10-FINAL.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-ooxml-3.10-FINAL.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-ooxml-3.10-FINAL.jar new file mode 100644 index 000000000..0782b07d4 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-ooxml-3.10-FINAL.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-ooxml-schemas-3.10-FINAL.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-ooxml-schemas-3.10-FINAL.jar new file mode 100644 index 000000000..24d719e70 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-ooxml-schemas-3.10-FINAL.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-scratchpad-3.10-FINAL.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-scratchpad-3.10-FINAL.jar new file mode 100644 index 000000000..8b78692c7 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/poi-scratchpad-3.10-FINAL.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/quartz-2.2.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/quartz-2.2.2.jar new file mode 100644 index 000000000..bfff89777 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/quartz-2.2.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/relaxngDatatype-20020414.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/relaxngDatatype-20020414.jar new file mode 100644 index 000000000..db9206f63 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/relaxngDatatype-20020414.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-4.5.0.Alpha3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-4.5.0.Alpha3.jar new file mode 100644 index 000000000..a9d6e9d54 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-4.5.0.Alpha3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-a4j-4.5.0.Alpha3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-a4j-4.5.0.Alpha3.jar new file mode 100644 index 000000000..75b783b0b Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-a4j-4.5.0.Alpha3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-core-4.5.0.Alpha3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-core-4.5.0.Alpha3.jar new file mode 100644 index 000000000..726fc2548 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/richfaces-core-4.5.0.Alpha3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ridl-3.1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ridl-3.1.0.jar new file mode 100644 index 000000000..df54a50f2 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/ridl-3.1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/sac-1.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/sac-1.3.jar new file mode 100644 index 000000000..39b92b1d8 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/sac-1.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-asn1-0.9.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-asn1-0.9.7.jar new file mode 100644 index 000000000..bf5ba096f Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-asn1-0.9.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-ldap-0.9.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-ldap-0.9.7.jar new file mode 100644 index 000000000..4e61a4e5a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-ldap-0.9.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-ldap-constants-0.9.7.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-ldap-constants-0.9.7.jar new file mode 100644 index 000000000..ac0c0bf65 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/shared-ldap-constants-0.9.7.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/snakeyaml-1.13.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/snakeyaml-1.13.jar new file mode 100644 index 000000000..453f99fc0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/snakeyaml-1.13.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/spatial4j-0.4.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/spatial4j-0.4.1.jar new file mode 100644 index 000000000..e62c0b480 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/spatial4j-0.4.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/standard-1.1.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/standard-1.1.2.jar new file mode 100644 index 000000000..bc528acb9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/standard-1.1.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stax-api-1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stax-api-1.0.jar new file mode 100644 index 000000000..d25ae1acc Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stax-api-1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stax2-api-3.1.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stax2-api-3.1.1.jar new file mode 100644 index 000000000..63a8a0646 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stax2-api-3.1.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stringtemplate-3.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stringtemplate-3.2.jar new file mode 100644 index 000000000..8e4153196 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/stringtemplate-3.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/testng-5.14.10.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/testng-5.14.10.jar new file mode 100644 index 000000000..f26b02d49 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/testng-5.14.10.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tomcat-jdbc-7.0.64.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tomcat-jdbc-7.0.64.jar new file mode 100644 index 000000000..8de8c92b0 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tomcat-jdbc-7.0.64.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tomcat-juli-7.0.64.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tomcat-juli-7.0.64.jar new file mode 100644 index 000000000..35ec8e494 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tomcat-juli-7.0.64.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tranql-connector-1.8.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tranql-connector-1.8.jar new file mode 100644 index 000000000..f6b82ecae Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/tranql-connector-1.8.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/unoil-3.1.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/unoil-3.1.0.jar new file mode 100644 index 000000000..ff23e05fd Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/unoil-3.1.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/validation-api-1.0.0.GA.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/validation-api-1.0.0.GA.jar new file mode 100644 index 000000000..61f672521 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/validation-api-1.0.0.GA.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/webdav-jaxrs-1.1.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/webdav-jaxrs-1.1.1.jar new file mode 100644 index 000000000..ad1bb175c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/webdav-jaxrs-1.1.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/wem-2.0.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/wem-2.0.2.jar new file mode 100644 index 000000000..c9ddd0f05 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/wem-2.0.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/woodstox-core-asl-4.2.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/woodstox-core-asl-4.2.0.jar new file mode 100644 index 000000000..8ca96d52a Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/woodstox-core-asl-4.2.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/wsdl4j-1.6.3.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/wsdl4j-1.6.3.jar new file mode 100644 index 000000000..b9c10b97c Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/wsdl4j-1.6.3.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xbean-naming-3.9.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xbean-naming-3.9.jar new file mode 100644 index 000000000..8374df6f6 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xbean-naming-3.9.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xml-resolver-1.2.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xml-resolver-1.2.jar new file mode 100644 index 000000000..e535bdc07 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xml-resolver-1.2.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xmlbeans-2.6.0.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xmlbeans-2.6.0.jar new file mode 100644 index 000000000..d1b66271f Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xmlbeans-2.6.0.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xmlschema-core-2.2.1.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xmlschema-core-2.2.1.jar new file mode 100644 index 000000000..cab69fd41 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xmlschema-core-2.2.1.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xpp3-1.1.4c-clean.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xpp3-1.1.4c-clean.jar new file mode 100644 index 000000000..a2d74f708 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xpp3-1.1.4c-clean.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xsom-20140925.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xsom-20140925.jar new file mode 100644 index 000000000..f391598d9 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xsom-20140925.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xstream-1.4.6.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xstream-1.4.6.jar new file mode 100644 index 000000000..0dfca3fba Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/xstream-1.4.6.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/yarfraw-0.92.jar b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/yarfraw-0.92.jar new file mode 100644 index 000000000..7f9158ca7 Binary files /dev/null and b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/lib/yarfraw-0.92.jar differ diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/plugins/README.txt b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/plugins/README.txt new file mode 100644 index 000000000..4e594be67 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/plugins/README.txt @@ -0,0 +1 @@ +This folder contains the external modules on top of the nuxeo platform \ No newline at end of file diff --git a/3rdparty/nuxeo/nuxeo-server/7.0-HF16/system.properties b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/system.properties new file mode 100644 index 000000000..781612386 --- /dev/null +++ b/3rdparty/nuxeo/nuxeo-server/7.0-HF16/system.properties @@ -0,0 +1 @@ +org.nuxeo.launcher.libdirs=lib diff --git a/build.properties b/build.properties index aa3c430ab..8de5df936 100644 --- a/build.properties +++ b/build.properties @@ -17,7 +17,7 @@ cspace.services.war=${cspace.services.context}.war domain.nuxeo=nuxeo-server #nuxeo -nuxeo.release=6.0-HF21 +nuxeo.release=7.0-HF16 nuxeo.ear=nuxeo.ear nuxeo.system=bundles diff --git a/pom.xml b/pom.xml index a0de7f32e..746ab57e6 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ UTF-8 4.5-SNAPSHOT 4.5-SNAPSHOT - 6.0-HF21 + 7.10 ${nuxeo.general.release} ${nuxeo.general.release} ${nuxeo.general.release} diff --git a/services/JaxRsServiceProvider/.gitignore b/services/JaxRsServiceProvider/.gitignore index 1dd333108..e91d5c41b 100644 --- a/services/JaxRsServiceProvider/.gitignore +++ b/services/JaxRsServiceProvider/.gitignore @@ -1,2 +1,3 @@ /target/ /target/ +/target/ diff --git a/services/JaxRsServiceProvider/pom.xml b/services/JaxRsServiceProvider/pom.xml index 431a137a9..f23ae468e 100644 --- a/services/JaxRsServiceProvider/pom.xml +++ b/services/JaxRsServiceProvider/pom.xml @@ -635,89 +635,6 @@ nuxeo-platform-imaging-core ${nuxeo.core.version} - - org.nuxeo.ecm.platform - nuxeo-platform-imaging-preview - ${nuxeo.core.version} - - - jboss-seam-pdf - org.jboss.seam - - - jboss-seam-rss - org.jboss.seam - - - jboss-seam-excel - org.jboss.seam - - - nuxeo-platform-ui-web - org.nuxeo.ecm.platform - - - xercesImpl - xerces - - - servlet-api - javax.servlet - - - oauth-httpclient3 - net.oauth.core - - - oauth-consumer - net.oauth.core - - - oauth-provider - net.oauth.core - - - oauth - net.oauth.core - - - jboss-seam-remoting - org.jboss.seam - - - jboss-seam-ui - org.jboss.seam - - - jboss-seam - org.jboss.seam - - - richfaces - org.richfaces - - - richfaces-a4j - org.richfaces - - - richfaces-core - org.richfaces - - - jsf-api - com.sun.faces - - - jsf-impl - com.sun.faces - - - el-api - javax.el - - - org.nuxeo.ecm.platform nuxeo-platform-audit-api diff --git a/services/account/client/.gitignore b/services/account/client/.gitignore index b83d22266..1dd333108 100644 --- a/services/account/client/.gitignore +++ b/services/account/client/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/account/jaxb/.gitignore b/services/account/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/account/jaxb/.gitignore +++ b/services/account/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/account/pstore/.gitignore b/services/account/pstore/.gitignore index b83d22266..1dd333108 100644 --- a/services/account/pstore/.gitignore +++ b/services/account/pstore/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/acquisition/jaxb/.gitignore b/services/acquisition/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/acquisition/jaxb/.gitignore +++ b/services/acquisition/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/authentication/client/.gitignore b/services/authentication/client/.gitignore index b83d22266..1dd333108 100644 --- a/services/authentication/client/.gitignore +++ b/services/authentication/client/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/authority/jaxb/.gitignore b/services/authority/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/authority/jaxb/.gitignore +++ b/services/authority/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/authority/service/pom.xml b/services/authority/service/pom.xml index 3e26aac6d..62d404615 100644 --- a/services/authority/service/pom.xml +++ b/services/authority/service/pom.xml @@ -210,11 +210,6 @@ provided - - org.nuxeo.ecm.platform - nuxeo-platform-mimetype-api - ${nuxeo.platform.version} - org.nuxeo.ecm.platform nuxeo-platform-imaging-core diff --git a/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/AuthorityServiceUtils.java b/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/AuthorityServiceUtils.java index 5c81fa9fc..d083dc02b 100644 --- a/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/AuthorityServiceUtils.java +++ b/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/AuthorityServiceUtils.java @@ -7,7 +7,6 @@ import java.util.regex.Pattern; import javax.ws.rs.core.Response; import org.collectionspace.services.client.AuthorityClient; -import org.collectionspace.services.client.CollectionSpaceClient; import org.collectionspace.services.client.PoxPayloadIn; import org.collectionspace.services.common.ServiceMain; import org.collectionspace.services.common.api.Tools; @@ -25,7 +24,6 @@ import org.collectionspace.services.nuxeo.util.NuxeoUtils; import org.collectionspace.services.common.document.DocumentException; //import org.dom4j.DocumentException; -import org.eclipse.jetty.http.HttpStatus; import org.nuxeo.ecm.core.api.DocumentModel; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -124,7 +122,7 @@ public class AuthorityServiceUtils { Response res = client.read(specifier.getURNValue()); try { int statusCode = res.getStatus(); - if (statusCode == HttpStatus.OK_200) { + if (statusCode == org.apache.commons.httpclient.HttpStatus.SC_OK) { result = new PoxPayloadIn((String)res.readEntity(responseType)); // Get the entire response! } else { String errMsg = String.format("Could not retrieve authority information for '%s' on remote server '%s'. Server returned status code %d", @@ -160,7 +158,7 @@ public class AuthorityServiceUtils { try { int statusCode = res.getStatus(); - if (statusCode == HttpStatus.OK_200) { + if (statusCode == org.apache.commons.httpclient.HttpStatus.SC_OK) { result = new PoxPayloadIn((String)res.readEntity(responseType)); // Get the entire response. } else { String errMsg = String.format("Could not retrieve authority item information for '%s:%s' on remote server '%s'. Server returned status code %d", diff --git a/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/nuxeo/AuthorityDocumentModelHandler.java b/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/nuxeo/AuthorityDocumentModelHandler.java index 5798be706..d65cb2bca 100644 --- a/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/nuxeo/AuthorityDocumentModelHandler.java +++ b/services/authority/service/src/main/java/org/collectionspace/services/common/vocabulary/nuxeo/AuthorityDocumentModelHandler.java @@ -30,6 +30,7 @@ import java.util.Map; import javax.ws.rs.core.MultivaluedMap; import javax.ws.rs.core.Response; +import org.apache.commons.httpclient.HttpStatus; import org.collectionspace.services.client.AbstractCommonListUtils; import org.collectionspace.services.client.AuthorityClient; import org.collectionspace.services.client.PayloadInputPart; @@ -64,7 +65,6 @@ import org.collectionspace.services.nuxeo.client.java.CoreSessionInterface; import org.collectionspace.services.nuxeo.client.java.RepositoryClientImpl; import org.collectionspace.services.nuxeo.util.NuxeoUtils; import org.dom4j.Element; -import org.eclipse.jetty.http.HttpStatus; import org.nuxeo.ecm.core.api.ClientException; import org.nuxeo.ecm.core.api.DocumentModel; import org.slf4j.Logger; @@ -497,7 +497,7 @@ public abstract class AuthorityDocumentModelHandler private void assertStatusCode(Response res, Specifier specifier, AuthorityClient client) throws Exception { int statusCode = res.getStatus(); - if (statusCode != HttpStatus.OK_200) { + if (statusCode != HttpStatus.SC_OK) { String errMsg = String.format("Could not retrieve authority information for '%s' on remote server '%s'. Server returned status code %d", specifier.getURNValue(), client.getBaseURL(), statusCode); throw new DocumentException(statusCode, errMsg); diff --git a/services/authorization-mgt/import/.gitignore b/services/authorization-mgt/import/.gitignore index b83d22266..1dd333108 100644 --- a/services/authorization-mgt/import/.gitignore +++ b/services/authorization-mgt/import/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/authorization/pstore/.gitignore b/services/authorization/pstore/.gitignore index b83d22266..1dd333108 100644 --- a/services/authorization/pstore/.gitignore +++ b/services/authorization/pstore/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/batch/jaxb/.gitignore b/services/batch/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/batch/jaxb/.gitignore +++ b/services/batch/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/citation/jaxb/.gitignore b/services/citation/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/citation/jaxb/.gitignore +++ b/services/citation/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/collectionobject/jaxb/.gitignore b/services/collectionobject/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/collectionobject/jaxb/.gitignore +++ b/services/collectionobject/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/common/.gitignore b/services/common/.gitignore index b83d22266..1dd333108 100644 --- a/services/common/.gitignore +++ b/services/common/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/common/pom.xml b/services/common/pom.xml index 48645b4ac..866f8e4ab 100644 --- a/services/common/pom.xml +++ b/services/common/pom.xml @@ -244,16 +244,6 @@ nuxeo-runtime-launcher ${nuxeo.platform.version} - - org.nuxeo.ecm.platform - nuxeo-platform-mimetype-api - ${nuxeo.platform.version} - - - org.nuxeo.ecm.platform - nuxeo-platform-mimetype-core - ${nuxeo.platform.version} - org.nuxeo.ecm.platform nuxeo-platform-types-api diff --git a/services/common/src/main/java/org/collectionspace/services/common/document/DocumentUtils.java b/services/common/src/main/java/org/collectionspace/services/common/document/DocumentUtils.java index bfd99e0d3..1e74a1848 100644 --- a/services/common/src/main/java/org/collectionspace/services/common/document/DocumentUtils.java +++ b/services/common/src/main/java/org/collectionspace/services/common/document/DocumentUtils.java @@ -67,7 +67,6 @@ import org.jboss.resteasy.plugins.providers.multipart.MultipartInput; import org.jboss.resteasy.plugins.providers.multipart.InputPart; //import org.jboss.resteasy.plugins.providers.multipart.MultipartOutput; -import org.mortbay.log.Log; import org.nuxeo.ecm.core.io.ExportConstants; import org.nuxeo.common.collections.PrimitiveArrays; import org.nuxeo.ecm.core.api.DocumentModel; @@ -1444,7 +1443,7 @@ public class DocumentUtils { try { result = type.decode(dateVal); } catch (Exception e) { // Nuxeo may not be able to decode dates like "July 11, 2001", so we'll try to convert it to ISO 8601 first - Log.debug(String.format( + logger.debug(String.format( "Nuxeo could not decode date string '%s'. CSpace will try to convert it to an ISO 8601 timestamp for Nuxeo first.", dateVal), e); } // All other date or date/time values must first converted diff --git a/services/common/src/main/java/org/collectionspace/services/common/imaging/nuxeo/NuxeoBlobUtils.java b/services/common/src/main/java/org/collectionspace/services/common/imaging/nuxeo/NuxeoBlobUtils.java index 2c456ffdd..03dbf84fd 100644 --- a/services/common/src/main/java/org/collectionspace/services/common/imaging/nuxeo/NuxeoBlobUtils.java +++ b/services/common/src/main/java/org/collectionspace/services/common/imaging/nuxeo/NuxeoBlobUtils.java @@ -55,7 +55,6 @@ import org.nuxeo.ecm.core.api.IdRef; import org.nuxeo.ecm.core.api.blobholder.BlobHolder; import org.nuxeo.ecm.core.api.blobholder.DocumentBlobHolder; import org.nuxeo.ecm.core.api.impl.blob.FileBlob; -import org.nuxeo.ecm.core.api.impl.blob.InputStreamBlob; import org.nuxeo.ecm.core.api.Blob; import org.nuxeo.ecm.core.api.ClientException; import org.nuxeo.ecm.core.api.DocumentModel; @@ -646,7 +645,7 @@ public class NuxeoBlobUtils { DocumentRef nuxeoWspace = new IdRef(nuxeoWspaceId); DocumentModel blobLocation = repoSession.getDocument(nuxeoWspace); - Blob inputStreamBlob = new InputStreamBlob(inputStream); + Blob inputStreamBlob = new FileBlob(inputStream); // creates a temp file to hold the stream DocumentModel documentModel = createDocumentFromBlob( repoSession, inputStreamBlob, diff --git a/services/common/src/main/java/org/collectionspace/services/common/init/AddIndices.java b/services/common/src/main/java/org/collectionspace/services/common/init/AddIndices.java index 24bacdef7..9644fcc0a 100644 --- a/services/common/src/main/java/org/collectionspace/services/common/init/AddIndices.java +++ b/services/common/src/main/java/org/collectionspace/services/common/init/AddIndices.java @@ -23,8 +23,6 @@ import java.sql.SQLException; import java.sql.Statement; import java.util.List; -import javax.sql.DataSource; - import org.collectionspace.services.client.AuthorityClient; import org.collectionspace.services.common.api.Tools; import org.collectionspace.services.common.context.ServiceBindingUtils; @@ -34,7 +32,6 @@ import org.collectionspace.services.config.service.InitHandler.Params.Field; import org.collectionspace.services.config.service.InitHandler.Params.Property; import org.collectionspace.services.config.service.ObjectPartType; import org.collectionspace.services.config.service.ServiceBindingType; -import org.mortbay.log.Log; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -102,13 +99,12 @@ public class AddIndices extends InitHandler implements IInitHandler { List fields, List properties) throws Exception { //todo: all post-init tasks for services, or delegate to services that override. - int rows = 0; - String sql = ""; if (logger.isInfoEnabled() && sbt != null) { logger.info("Creating indicies, as needed, for designated fields in " + sbt.getName() + " for repository domain " + sbt.getRepositoryDomain().trim() + "..."); } + int rows = 0; for (Field field : fields) { String tableName = field.getTable(); String fieldName = field.getCol(); @@ -122,6 +118,11 @@ public class AddIndices extends InitHandler implements IInitHandler { rows = addOneIndex(dataSourceName, repositoryName, cspaceInstanceId, tableName, fieldName); } } + + if (logger.isDebugEnabled()) { + logger.debug(String.format("Rows indexed during repository initialization is %d.", rows)); + } + // // Add a uniqueness constraint on the short ID field of authority and authority item tables // @@ -177,7 +178,6 @@ public class AddIndices extends InitHandler implements IInitHandler { result = true; } } catch (Exception e) { - String errorMsg = e.getLocalizedMessage(); logger.error(String.format("Error when identifying whether constraint on column '%s' exists in table '%s': %s", SHORT_ID, tableName, e != null ? e : "Unknown error.")); throw e; // rethrow it. @@ -267,7 +267,7 @@ public class AddIndices extends InitHandler implements IInitHandler { logger.error(String.format("*** ERROR *** Encountered problems when trying to create a uniqueness constraint on column '%s' of table '%s' in repository '%s'.", SHORT_ID, tableName, repositoryName)); } else { - Log.debug(String.format("Created a uniqueness constraint on column '%s' of table '%s' in repository '%s'.", + logger.debug(String.format("Created a uniqueness constraint on column '%s' of table '%s' in repository '%s'.", SHORT_ID, tableName, repositoryName)); } diff --git a/services/common/src/main/java/org/collectionspace/services/nuxeo/util/CSReindexFulltextRoot.java b/services/common/src/main/java/org/collectionspace/services/nuxeo/util/CSReindexFulltextRoot.java index 36f26bb8e..fd91f2e7f 100644 --- a/services/common/src/main/java/org/collectionspace/services/nuxeo/util/CSReindexFulltextRoot.java +++ b/services/common/src/main/java/org/collectionspace/services/nuxeo/util/CSReindexFulltextRoot.java @@ -2,7 +2,7 @@ package org.collectionspace.services.nuxeo.util; import org.collectionspace.services.nuxeo.client.java.CoreSessionInterface; import org.collectionspace.services.nuxeo.util.ReindexFulltextRoot; -import org.nuxeo.ecm.core.storage.StorageException; +import org.nuxeo.ecm.core.api.NuxeoException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -18,7 +18,7 @@ public class CSReindexFulltextRoot extends ReindexFulltextRoot { this.coreSession = repoSession.getCoreSession(); } - public String reindexFulltext(int batchSize, int batch, String query) throws StorageException { + public String reindexFulltext(int batchSize, int batch, String query) throws NuxeoException { return super.reindexFulltext(batchSize, batch, query); } } diff --git a/services/common/src/main/java/org/collectionspace/services/nuxeo/util/NuxeoUtils.java b/services/common/src/main/java/org/collectionspace/services/nuxeo/util/NuxeoUtils.java index 324601e2f..cddb62fd0 100644 --- a/services/common/src/main/java/org/collectionspace/services/nuxeo/util/NuxeoUtils.java +++ b/services/common/src/main/java/org/collectionspace/services/nuxeo/util/NuxeoUtils.java @@ -54,10 +54,8 @@ import org.collectionspace.services.lifecycle.TransitionDefList; import org.collectionspace.services.lifecycle.TransitionList; import org.collectionspace.services.nuxeo.client.java.NuxeoDocumentException; import org.collectionspace.services.nuxeo.client.java.CoreSessionInterface; - import org.dom4j.Document; import org.dom4j.io.SAXReader; -import org.mortbay.log.Log; import org.nuxeo.ecm.core.NXCore; import org.nuxeo.ecm.core.api.DocumentModel; import org.nuxeo.ecm.core.api.DocumentModelList; @@ -66,8 +64,8 @@ import org.nuxeo.ecm.core.api.Blob; import org.nuxeo.ecm.core.api.CoreSession; import org.nuxeo.ecm.core.api.DocumentRef; import org.nuxeo.ecm.core.api.IdRef; +import org.nuxeo.ecm.core.api.NuxeoException; import org.nuxeo.ecm.core.api.PathRef; -import org.nuxeo.ecm.core.api.impl.blob.BlobWrapper; import org.nuxeo.ecm.core.api.model.PropertyException; import org.nuxeo.ecm.core.io.DocumentPipe; import org.nuxeo.ecm.core.io.DocumentReader; @@ -77,9 +75,6 @@ import org.nuxeo.ecm.core.io.impl.plugins.SingleDocumentReader; import org.nuxeo.ecm.core.io.impl.plugins.XMLDocumentWriter; import org.nuxeo.ecm.core.lifecycle.LifeCycleService; import org.nuxeo.ecm.core.schema.SchemaManager; -import org.nuxeo.ecm.core.storage.StorageBlob; -import org.nuxeo.ecm.core.storage.binary.Binary; -import org.nuxeo.ecm.core.storage.sql.coremodel.SQLBlob; import org.nuxeo.runtime.api.Framework; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -113,38 +108,8 @@ public class NuxeoUtils { */ private static File getFileOfBlob(Blob blob) { File result = null; - - if (blob instanceof BlobWrapper) { - BlobWrapper blobWrapper = (BlobWrapper)blob; - try { - Field blobField; - blobField = blobWrapper.getClass().getDeclaredField("blob"); - boolean accessibleState = blobField.isAccessible(); - if (accessibleState == false) { - blobField.setAccessible(true); - } - blob = (StorageBlob)blobField.get(blobWrapper); - blobField.setAccessible(accessibleState); // set it back to its original access state - } catch (Exception e) { - logger.error("blob field of BlobWrapper is not accessible.", e); - } - } - - if (blob instanceof StorageBlob) { - StorageBlob sqlBlob = (StorageBlob)blob; - Binary binary = sqlBlob.getBinary(); - try { - Field fileField = binary.getClass().getDeclaredField("file"); - boolean accessibleState = fileField.isAccessible(); - if (accessibleState == false) { - fileField.setAccessible(true); - } - result = (File)fileField.get(binary); - fileField.setAccessible(accessibleState); // set it back to its original access state - } catch (Exception e) { - logger.error("Was not able to find the 'file' field", e); - } - } + + result = blob.getFile(); return result; } @@ -311,7 +276,7 @@ public class NuxeoUtils { Exception deleteException = null; try { java.nio.file.Files.delete(fileToDelete.toPath()); - Log.debug(String.format("Deleted file '%s'.", fileToDelete.getCanonicalPath())); + logger.debug(String.format("Deleted file '%s'.", fileToDelete.getCanonicalPath())); } catch (IOException e) { deleteException = e; result = false; @@ -1059,7 +1024,7 @@ public class NuxeoUtils { returnVal = DocumentUtils.propertyValueAsString(value, docModel, xpath); } result = returnVal; - } catch (ClientException ce) { + } catch (NuxeoException ce) { String msg = "Unknown Nuxeo client exception."; if (ce instanceof PropertyException) { msg = String.format("Problem retrieving property for xpath { %s } with CSID = %s.", xpath, targetCSID); diff --git a/services/common/src/main/java/org/collectionspace/services/nuxeo/util/ReindexFulltextRoot.java b/services/common/src/main/java/org/collectionspace/services/nuxeo/util/ReindexFulltextRoot.java index 67665c6f7..ceb4e66c6 100644 --- a/services/common/src/main/java/org/collectionspace/services/nuxeo/util/ReindexFulltextRoot.java +++ b/services/common/src/main/java/org/collectionspace/services/nuxeo/util/ReindexFulltextRoot.java @@ -50,7 +50,6 @@ import org.nuxeo.ecm.core.event.EventService; import org.nuxeo.ecm.core.query.QueryFilter; import org.nuxeo.ecm.core.query.sql.NXQL; import org.nuxeo.ecm.core.storage.FulltextConfiguration; -import org.nuxeo.ecm.core.storage.StorageException; import org.nuxeo.ecm.core.storage.sql.Model; import org.nuxeo.ecm.core.storage.sql.Node; import org.nuxeo.ecm.core.storage.sql.Session; @@ -99,7 +98,7 @@ public class ReindexFulltextRoot { } @GET - public String get(@QueryParam("batchSize") int batchSize, @QueryParam("batch") int batch) throws StorageException { + public String get(@QueryParam("batchSize") int batchSize, @QueryParam("batch") int batch) throws NuxeoException { coreSession = SessionFactory.getSession(request); return reindexFulltext(batchSize, batch, null); } @@ -113,7 +112,7 @@ public class ReindexFulltextRoot { * @return when done, ok + the total number of docs * @throws StorageException */ - public String reindexFulltext(int batchSize, int batch, String query) throws StorageException { + public String reindexFulltext(int batchSize, int batch, String query) throws NuxeoException { Principal principal = coreSession.getPrincipal(); if (!(principal instanceof NuxeoPrincipal)) { return "unauthorized"; @@ -201,7 +200,7 @@ public class ReindexFulltextRoot { * This has to be called once the transaction has been started. * @throws StorageException */ - protected void getLowLevelSession() throws StorageException { + protected void getLowLevelSession() throws NuxeoException { try { SQLSession s = (SQLSession) ((AbstractSession) coreSession).getSession(); Field f2 = SQLSession.class.getDeclaredField("session"); @@ -213,7 +212,7 @@ public class ReindexFulltextRoot { } } - protected List getInfos(String query) throws StorageException { + protected List getInfos(String query) throws NuxeoException { getLowLevelSession(); List infos = new ArrayList(); IterableQueryResult it = session.queryAndFetch(query, NXQL.NXQL, @@ -230,7 +229,7 @@ public class ReindexFulltextRoot { return infos; } - protected void doBatch(List infos) throws StorageException { + protected void doBatch(List infos) throws NuxeoException { boolean tx; boolean ok; @@ -272,7 +271,7 @@ public class ReindexFulltextRoot { * things like versions which aren't usually modifiable, and it's also good * to bypass all listeners. */ - protected void runSyncBatch(List ids, Set asyncIds) throws StorageException { + protected void runSyncBatch(List ids, Set asyncIds) throws NuxeoException { getLowLevelSession(); session.getNodesByIds(ids); // batch fetch diff --git a/services/concept/jaxb/.gitignore b/services/concept/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/concept/jaxb/.gitignore +++ b/services/concept/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/conditioncheck/jaxb/.gitignore b/services/conditioncheck/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/conditioncheck/jaxb/.gitignore +++ b/services/conditioncheck/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/conservation/jaxb/.gitignore b/services/conservation/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/conservation/jaxb/.gitignore +++ b/services/conservation/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/contact/jaxb/.gitignore b/services/contact/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/contact/jaxb/.gitignore +++ b/services/contact/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/dimension/jaxb/.gitignore b/services/dimension/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/dimension/jaxb/.gitignore +++ b/services/dimension/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/exhibition/jaxb/.gitignore b/services/exhibition/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/exhibition/jaxb/.gitignore +++ b/services/exhibition/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/group/jaxb/.gitignore b/services/group/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/group/jaxb/.gitignore +++ b/services/group/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/imports/jaxb/.gitignore b/services/imports/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/imports/jaxb/.gitignore +++ b/services/imports/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/imports/service/src/main/java/org/collectionspace/services/imports/nuxeo/LoggedXMLDirectoryReader.java b/services/imports/service/src/main/java/org/collectionspace/services/imports/nuxeo/LoggedXMLDirectoryReader.java index d87c3d9ca..4abb8079f 100644 --- a/services/imports/service/src/main/java/org/collectionspace/services/imports/nuxeo/LoggedXMLDirectoryReader.java +++ b/services/imports/service/src/main/java/org/collectionspace/services/imports/nuxeo/LoggedXMLDirectoryReader.java @@ -11,18 +11,15 @@ import java.util.List; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.io.SAXReader; - import org.nuxeo.common.utils.FileTreeIterator; import org.nuxeo.common.utils.FileUtils; import org.nuxeo.common.utils.Path; -import org.nuxeo.ecm.core.api.impl.blob.StreamingBlob; +import org.nuxeo.ecm.core.api.impl.blob.FileBlob; import org.nuxeo.ecm.core.io.ExportConstants; import org.nuxeo.ecm.core.io.ExportedDocument; import org.nuxeo.ecm.core.io.impl.AbstractDocumentReader; import org.nuxeo.ecm.core.io.impl.ExportedDocumentImpl; -import org.nuxeo.runtime.services.streaming.FileSource; import org.nuxeo.runtime.transaction.TransactionHelper; - import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -147,8 +144,7 @@ public class LoggedXMLDirectoryReader extends AbstractDocumentReader { FileUtils.getFileNameNoExt(file.getName()), loadXML(file)); } else { // presume a blob - xdoc.putBlob(file.getName(), new StreamingBlob( - new FileSource(file))); + xdoc.putBlob(file.getName(), new FileBlob(file)); } } } diff --git a/services/intake/jaxb/.gitignore b/services/intake/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/intake/jaxb/.gitignore +++ b/services/intake/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/jaxb/.gitignore b/services/jaxb/.gitignore index b83d22266..e91d5c41b 100644 --- a/services/jaxb/.gitignore +++ b/services/jaxb/.gitignore @@ -1 +1,3 @@ /target/ +/target/ +/target/ diff --git a/services/loanin/jaxb/.gitignore b/services/loanin/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/loanin/jaxb/.gitignore +++ b/services/loanin/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/loanout/jaxb/.gitignore b/services/loanout/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/loanout/jaxb/.gitignore +++ b/services/loanout/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/location/jaxb/.gitignore b/services/location/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/location/jaxb/.gitignore +++ b/services/location/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/material/jaxb/.gitignore b/services/material/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/material/jaxb/.gitignore +++ b/services/material/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/media/jaxb/.gitignore b/services/media/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/media/jaxb/.gitignore +++ b/services/media/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/movement/jaxb/.gitignore b/services/movement/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/movement/jaxb/.gitignore +++ b/services/movement/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/objectexit/jaxb/.gitignore b/services/objectexit/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/objectexit/jaxb/.gitignore +++ b/services/objectexit/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/organization/jaxb/.gitignore b/services/organization/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/organization/jaxb/.gitignore +++ b/services/organization/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/person/jaxb/.gitignore b/services/person/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/person/jaxb/.gitignore +++ b/services/person/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/place/jaxb/.gitignore b/services/place/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/place/jaxb/.gitignore +++ b/services/place/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/report/jaxb/.gitignore b/services/report/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/report/jaxb/.gitignore +++ b/services/report/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/security/client/.gitignore b/services/security/client/.gitignore index b83d22266..1dd333108 100644 --- a/services/security/client/.gitignore +++ b/services/security/client/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/servicegroup/jaxb/.gitignore b/services/servicegroup/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/servicegroup/jaxb/.gitignore +++ b/services/servicegroup/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/taxonomy/jaxb/.gitignore b/services/taxonomy/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/taxonomy/jaxb/.gitignore +++ b/services/taxonomy/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/valuationcontrol/jaxb/.gitignore b/services/valuationcontrol/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/valuationcontrol/jaxb/.gitignore +++ b/services/valuationcontrol/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/vocabulary/jaxb/.gitignore b/services/vocabulary/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/vocabulary/jaxb/.gitignore +++ b/services/vocabulary/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/ diff --git a/services/work/jaxb/.gitignore b/services/work/jaxb/.gitignore index b83d22266..1dd333108 100644 --- a/services/work/jaxb/.gitignore +++ b/services/work/jaxb/.gitignore @@ -1 +1,2 @@ /target/ +/target/