From 19c405400a3207a0add028147e3e8c2d45c58378 Mon Sep 17 00:00:00 2001 From: mishako Date: Sat, 13 Feb 2016 18:53:44 +0100 Subject: [PATCH] Move rome-certiorem files into a subdirectory --- .gitignore => rome-certiorem/.gitignore | 0 LICENSE => rome-certiorem/LICENSE | 402 +++++++++--------- README => rome-certiorem/README | 18 +- pom.xml => rome-certiorem/pom.xml | 0 .../certiorem/HttpStatusCodeException.java | 0 .../certiorem/hub/DeltaFeedInfoCache.java | 0 .../certiorem/hub/DeltaSyndFeedInfo.java | 0 .../java/com/rometools/certiorem/hub/Hub.java | 0 .../com/rometools/certiorem/hub/Notifier.java | 0 .../com/rometools/certiorem/hub/Verifier.java | 0 .../rometools/certiorem/hub/data/HubDAO.java | 0 .../certiorem/hub/data/Subscriber.java | 0 .../hub/data/SubscriptionSummary.java | 0 .../certiorem/hub/data/jpa/JPADAO.java | 0 .../certiorem/hub/data/jpa/JPASubscriber.java | 0 .../certiorem/hub/data/jpa/package.html | 54 +-- .../rometools/certiorem/hub/data/package.html | 56 +-- .../hub/data/ram/InMemoryHubDAO.java | 0 .../certiorem/hub/data/ram/package.html | 0 .../hub/notify/standard/AbstractNotifier.java | 0 .../hub/notify/standard/Notification.java | 0 .../notify/standard/ThreadPoolNotifier.java | 0 .../notify/standard/UnthreadedNotifier.java | 0 .../hub/notify}/standard/package.html | 62 +-- .../com/rometools/certiorem/hub/package.html | 58 +-- .../hub/verify/standard/AbstractVerifier.java | 0 .../verify/standard/ThreadPoolVerifier.java | 0 .../standard/ThreadpoolVerifierAdvanced.java | 0 .../verify/standard/UnthreadedVerifier.java | 0 .../hub/verify}/standard/package.html | 62 +-- .../java/com/rometools/certiorem/package.html | 0 .../certiorem/pub/NotificationException.java | 0 .../rometools/certiorem/pub/Publisher.java | 0 .../com/rometools/certiorem/pub/package.html | 0 .../rometools/certiorem/sub/Requester.java | 0 .../certiorem/sub/Subscriptions.java | 0 .../rometools/certiorem/sub/data/SubDAO.java | 0 .../certiorem/sub/data/Subscription.java | 0 .../sub/data/SubscriptionCallback.java | 0 .../rometools/certiorem/sub/data/package.html | 0 .../sub/data/ram/InMemorySubDAO.java | 0 .../certiorem/sub/data/ram/package.html | 54 +-- .../com/rometools/certiorem/sub/package.html | 0 .../sub/request/AbstractRequester.java | 0 .../certiorem/sub/request/AsyncRequester.java | 0 .../certiorem/sub/request/SyncRequester.java | 0 .../certiorem/sub/request/package.html | 0 .../certiorem/web/AbstractHubServlet.java | 0 .../certiorem/web/AbstractSubServlet.java | 0 .../com/rometools/certiorem/web/package.html | 0 .../main/resources/META-INF/persistence.xml | 58 +-- .../src}/site/apt/CertioremTutorial.apt | 0 .../src}/site/apt/index.apt | 0 .../src}/site/resources/.nojekyll | 0 .../src}/site/resources/css/site.css | 0 .../src}/site/resources/images/romelogo.png | Bin {src => rome-certiorem/src}/site/site.xml | 0 .../certiorem/hub/AlwaysVerifier.java | 0 .../certiorem/hub/ControllerTest.java | 0 .../certiorem/hub/DeltaSyndFeedInfoTest.java | 0 .../certiorem/hub/ExceptionVerifier.java | 0 .../certiorem/hub/NeverVerifier.java | 0 .../certiorem/hub/data/AbstractDAOTest.java | 0 .../hub/data/ram/InMemoryDAOTest.java | 0 .../src}/test/resources/.gitignore | 0 .../src}/test/resources/logback-test.xml | 24 +- 66 files changed, 424 insertions(+), 424 deletions(-) rename .gitignore => rome-certiorem/.gitignore (100%) rename LICENSE => rome-certiorem/LICENSE (97%) rename README => rome-certiorem/README (94%) rename pom.xml => rome-certiorem/pom.xml (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/HttpStatusCodeException.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/DeltaFeedInfoCache.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/DeltaSyndFeedInfo.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/Hub.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/Notifier.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/Verifier.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/HubDAO.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/Subscriber.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/SubscriptionSummary.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/jpa/JPADAO.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/jpa/JPASubscriber.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/jpa/package.html (95%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/package.html (95%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/ram/InMemoryHubDAO.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/data/ram/package.html (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/notify/standard/AbstractNotifier.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/notify/standard/Notification.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/notify/standard/ThreadPoolNotifier.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/notify/standard/UnthreadedNotifier.java (100%) rename {src/main/java/com/rometools/certiorem/hub/verify => rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify}/standard/package.html (96%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/package.html (95%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/verify/standard/AbstractVerifier.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/verify/standard/ThreadPoolVerifier.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/verify/standard/ThreadpoolVerifierAdvanced.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/hub/verify/standard/UnthreadedVerifier.java (100%) rename {src/main/java/com/rometools/certiorem/hub/notify => rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify}/standard/package.html (96%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/package.html (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/pub/NotificationException.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/pub/Publisher.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/pub/package.html (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/Requester.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/Subscriptions.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/data/SubDAO.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/data/Subscription.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/data/SubscriptionCallback.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/data/package.html (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/data/ram/InMemorySubDAO.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/data/ram/package.html (95%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/package.html (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/request/AbstractRequester.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/request/AsyncRequester.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/request/SyncRequester.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/sub/request/package.html (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/web/AbstractHubServlet.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/web/AbstractSubServlet.java (100%) rename {src => rome-certiorem/src}/main/java/com/rometools/certiorem/web/package.html (100%) rename {src => rome-certiorem/src}/main/resources/META-INF/persistence.xml (96%) rename {src => rome-certiorem/src}/site/apt/CertioremTutorial.apt (100%) rename {src => rome-certiorem/src}/site/apt/index.apt (100%) rename {src => rome-certiorem/src}/site/resources/.nojekyll (100%) rename {src => rome-certiorem/src}/site/resources/css/site.css (100%) rename {src => rome-certiorem/src}/site/resources/images/romelogo.png (100%) rename {src => rome-certiorem/src}/site/site.xml (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/AlwaysVerifier.java (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/ControllerTest.java (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/DeltaSyndFeedInfoTest.java (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/ExceptionVerifier.java (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/NeverVerifier.java (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/data/AbstractDAOTest.java (100%) rename {src => rome-certiorem/src}/test/java/com/rometools/certiorem/hub/data/ram/InMemoryDAOTest.java (100%) rename {src => rome-certiorem/src}/test/resources/.gitignore (100%) rename {src => rome-certiorem/src}/test/resources/logback-test.xml (90%) diff --git a/.gitignore b/rome-certiorem/.gitignore similarity index 100% rename from .gitignore rename to rome-certiorem/.gitignore diff --git a/LICENSE b/rome-certiorem/LICENSE similarity index 97% rename from LICENSE rename to rome-certiorem/LICENSE index 9b5e401..7a4a3ea 100644 --- a/LICENSE +++ b/rome-certiorem/LICENSE @@ -1,202 +1,202 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/README b/rome-certiorem/README similarity index 94% rename from README rename to rome-certiorem/README index 7b08171..dc568e4 100644 --- a/README +++ b/rome-certiorem/README @@ -1,9 +1,9 @@ -ROME Certiorem - -Build Instructions -------------------------------------------------------------------------------- - -To build with Maven 2+: - -> mvn package - +ROME Certiorem + +Build Instructions +------------------------------------------------------------------------------- + +To build with Maven 2+: + +> mvn package + diff --git a/pom.xml b/rome-certiorem/pom.xml similarity index 100% rename from pom.xml rename to rome-certiorem/pom.xml diff --git a/src/main/java/com/rometools/certiorem/HttpStatusCodeException.java b/rome-certiorem/src/main/java/com/rometools/certiorem/HttpStatusCodeException.java similarity index 100% rename from src/main/java/com/rometools/certiorem/HttpStatusCodeException.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/HttpStatusCodeException.java diff --git a/src/main/java/com/rometools/certiorem/hub/DeltaFeedInfoCache.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/DeltaFeedInfoCache.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/DeltaFeedInfoCache.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/DeltaFeedInfoCache.java diff --git a/src/main/java/com/rometools/certiorem/hub/DeltaSyndFeedInfo.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/DeltaSyndFeedInfo.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/DeltaSyndFeedInfo.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/DeltaSyndFeedInfo.java diff --git a/src/main/java/com/rometools/certiorem/hub/Hub.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/Hub.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/Hub.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/Hub.java diff --git a/src/main/java/com/rometools/certiorem/hub/Notifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/Notifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/Notifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/Notifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/Verifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/Verifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/Verifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/Verifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/HubDAO.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/HubDAO.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/HubDAO.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/HubDAO.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/Subscriber.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/Subscriber.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/Subscriber.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/Subscriber.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/SubscriptionSummary.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/SubscriptionSummary.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/SubscriptionSummary.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/SubscriptionSummary.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/jpa/JPADAO.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/JPADAO.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/jpa/JPADAO.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/JPADAO.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/jpa/JPASubscriber.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/JPASubscriber.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/jpa/JPASubscriber.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/JPASubscriber.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/jpa/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/package.html similarity index 95% rename from src/main/java/com/rometools/certiorem/hub/data/jpa/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/package.html index 64caa18..a5c2c5e 100644 --- a/src/main/java/com/rometools/certiorem/hub/data/jpa/package.html +++ b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/jpa/package.html @@ -1,28 +1,28 @@ - - - - - jpa - - - A stock data implementation based on the Java Persistence API. - + + + + + jpa + + + A stock data implementation based on the Java Persistence API. + \ No newline at end of file diff --git a/src/main/java/com/rometools/certiorem/hub/data/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/package.html similarity index 95% rename from src/main/java/com/rometools/certiorem/hub/data/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/package.html index 753d66e..663de72 100644 --- a/src/main/java/com/rometools/certiorem/hub/data/package.html +++ b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/package.html @@ -1,29 +1,29 @@ - - - - - data - - - This package defines the basic data types and persistence mechanisms - that are required for a hub implementation. - + + + + + data + + + This package defines the basic data types and persistence mechanisms + that are required for a hub implementation. + \ No newline at end of file diff --git a/src/main/java/com/rometools/certiorem/hub/data/ram/InMemoryHubDAO.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/ram/InMemoryHubDAO.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/ram/InMemoryHubDAO.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/ram/InMemoryHubDAO.java diff --git a/src/main/java/com/rometools/certiorem/hub/data/ram/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/ram/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/data/ram/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/data/ram/package.html diff --git a/src/main/java/com/rometools/certiorem/hub/notify/standard/AbstractNotifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/AbstractNotifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/notify/standard/AbstractNotifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/AbstractNotifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/notify/standard/Notification.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/Notification.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/notify/standard/Notification.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/Notification.java diff --git a/src/main/java/com/rometools/certiorem/hub/notify/standard/ThreadPoolNotifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/ThreadPoolNotifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/notify/standard/ThreadPoolNotifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/ThreadPoolNotifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/notify/standard/UnthreadedNotifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/UnthreadedNotifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/notify/standard/UnthreadedNotifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/UnthreadedNotifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/verify/standard/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/package.html similarity index 96% rename from src/main/java/com/rometools/certiorem/hub/verify/standard/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/package.html index 19b986f..c38c288 100644 --- a/src/main/java/com/rometools/certiorem/hub/verify/standard/package.html +++ b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/notify/standard/package.html @@ -1,32 +1,32 @@ - - - - - verify - - - This package contains a set of standard Verifier implementations. -

- These implementations all use the standard java.net.* classes for - making requests to URLs. -

- + + + + + verify + + + This package contains a set of standard Verifier implementations. +

+ These implementations all use the standard java.net.* classes for + making requests to URLs. +

+ \ No newline at end of file diff --git a/src/main/java/com/rometools/certiorem/hub/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/package.html similarity index 95% rename from src/main/java/com/rometools/certiorem/hub/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/package.html index 70dbeb7..9e6bac7 100644 --- a/src/main/java/com/rometools/certiorem/hub/package.html +++ b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/package.html @@ -1,30 +1,30 @@ - - - - - hub - - - This package contains the core of the Hub implementation. -

Getting Started

-

The Hub implementation

- + + + + + hub + + + This package contains the core of the Hub implementation. +

Getting Started

+

The Hub implementation

+ \ No newline at end of file diff --git a/src/main/java/com/rometools/certiorem/hub/verify/standard/AbstractVerifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/AbstractVerifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/verify/standard/AbstractVerifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/AbstractVerifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadPoolVerifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadPoolVerifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadPoolVerifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadPoolVerifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadpoolVerifierAdvanced.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadpoolVerifierAdvanced.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadpoolVerifierAdvanced.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/ThreadpoolVerifierAdvanced.java diff --git a/src/main/java/com/rometools/certiorem/hub/verify/standard/UnthreadedVerifier.java b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/UnthreadedVerifier.java similarity index 100% rename from src/main/java/com/rometools/certiorem/hub/verify/standard/UnthreadedVerifier.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/UnthreadedVerifier.java diff --git a/src/main/java/com/rometools/certiorem/hub/notify/standard/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/package.html similarity index 96% rename from src/main/java/com/rometools/certiorem/hub/notify/standard/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/package.html index 19b986f..c38c288 100644 --- a/src/main/java/com/rometools/certiorem/hub/notify/standard/package.html +++ b/rome-certiorem/src/main/java/com/rometools/certiorem/hub/verify/standard/package.html @@ -1,32 +1,32 @@ - - - - - verify - - - This package contains a set of standard Verifier implementations. -

- These implementations all use the standard java.net.* classes for - making requests to URLs. -

- + + + + + verify + + + This package contains a set of standard Verifier implementations. +

+ These implementations all use the standard java.net.* classes for + making requests to URLs. +

+ \ No newline at end of file diff --git a/src/main/java/com/rometools/certiorem/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/package.html diff --git a/src/main/java/com/rometools/certiorem/pub/NotificationException.java b/rome-certiorem/src/main/java/com/rometools/certiorem/pub/NotificationException.java similarity index 100% rename from src/main/java/com/rometools/certiorem/pub/NotificationException.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/pub/NotificationException.java diff --git a/src/main/java/com/rometools/certiorem/pub/Publisher.java b/rome-certiorem/src/main/java/com/rometools/certiorem/pub/Publisher.java similarity index 100% rename from src/main/java/com/rometools/certiorem/pub/Publisher.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/pub/Publisher.java diff --git a/src/main/java/com/rometools/certiorem/pub/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/pub/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/pub/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/pub/package.html diff --git a/src/main/java/com/rometools/certiorem/sub/Requester.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/Requester.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/Requester.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/Requester.java diff --git a/src/main/java/com/rometools/certiorem/sub/Subscriptions.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/Subscriptions.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/Subscriptions.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/Subscriptions.java diff --git a/src/main/java/com/rometools/certiorem/sub/data/SubDAO.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/SubDAO.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/data/SubDAO.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/SubDAO.java diff --git a/src/main/java/com/rometools/certiorem/sub/data/Subscription.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/Subscription.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/data/Subscription.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/Subscription.java diff --git a/src/main/java/com/rometools/certiorem/sub/data/SubscriptionCallback.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/SubscriptionCallback.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/data/SubscriptionCallback.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/SubscriptionCallback.java diff --git a/src/main/java/com/rometools/certiorem/sub/data/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/data/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/package.html diff --git a/src/main/java/com/rometools/certiorem/sub/data/ram/InMemorySubDAO.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/ram/InMemorySubDAO.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/data/ram/InMemorySubDAO.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/ram/InMemorySubDAO.java diff --git a/src/main/java/com/rometools/certiorem/sub/data/ram/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/ram/package.html similarity index 95% rename from src/main/java/com/rometools/certiorem/sub/data/ram/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/ram/package.html index d5ae051..3333549 100644 --- a/src/main/java/com/rometools/certiorem/sub/data/ram/package.html +++ b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/data/ram/package.html @@ -1,28 +1,28 @@ - - - - - ram - - - An In-Memory DAO for subscriptions. - + + + + + ram + + + An In-Memory DAO for subscriptions. + \ No newline at end of file diff --git a/src/main/java/com/rometools/certiorem/sub/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/package.html diff --git a/src/main/java/com/rometools/certiorem/sub/request/AbstractRequester.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/AbstractRequester.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/request/AbstractRequester.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/AbstractRequester.java diff --git a/src/main/java/com/rometools/certiorem/sub/request/AsyncRequester.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/AsyncRequester.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/request/AsyncRequester.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/AsyncRequester.java diff --git a/src/main/java/com/rometools/certiorem/sub/request/SyncRequester.java b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/SyncRequester.java similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/request/SyncRequester.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/SyncRequester.java diff --git a/src/main/java/com/rometools/certiorem/sub/request/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/sub/request/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/sub/request/package.html diff --git a/src/main/java/com/rometools/certiorem/web/AbstractHubServlet.java b/rome-certiorem/src/main/java/com/rometools/certiorem/web/AbstractHubServlet.java similarity index 100% rename from src/main/java/com/rometools/certiorem/web/AbstractHubServlet.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/web/AbstractHubServlet.java diff --git a/src/main/java/com/rometools/certiorem/web/AbstractSubServlet.java b/rome-certiorem/src/main/java/com/rometools/certiorem/web/AbstractSubServlet.java similarity index 100% rename from src/main/java/com/rometools/certiorem/web/AbstractSubServlet.java rename to rome-certiorem/src/main/java/com/rometools/certiorem/web/AbstractSubServlet.java diff --git a/src/main/java/com/rometools/certiorem/web/package.html b/rome-certiorem/src/main/java/com/rometools/certiorem/web/package.html similarity index 100% rename from src/main/java/com/rometools/certiorem/web/package.html rename to rome-certiorem/src/main/java/com/rometools/certiorem/web/package.html diff --git a/src/main/resources/META-INF/persistence.xml b/rome-certiorem/src/main/resources/META-INF/persistence.xml similarity index 96% rename from src/main/resources/META-INF/persistence.xml rename to rome-certiorem/src/main/resources/META-INF/persistence.xml index f4a7eba..6237669 100644 --- a/src/main/resources/META-INF/persistence.xml +++ b/rome-certiorem/src/main/resources/META-INF/persistence.xml @@ -1,30 +1,30 @@ - - - - - - jdbc/certiorem-datasource - - - - - + + + + + + jdbc/certiorem-datasource + + + + + \ No newline at end of file diff --git a/src/site/apt/CertioremTutorial.apt b/rome-certiorem/src/site/apt/CertioremTutorial.apt similarity index 100% rename from src/site/apt/CertioremTutorial.apt rename to rome-certiorem/src/site/apt/CertioremTutorial.apt diff --git a/src/site/apt/index.apt b/rome-certiorem/src/site/apt/index.apt similarity index 100% rename from src/site/apt/index.apt rename to rome-certiorem/src/site/apt/index.apt diff --git a/src/site/resources/.nojekyll b/rome-certiorem/src/site/resources/.nojekyll similarity index 100% rename from src/site/resources/.nojekyll rename to rome-certiorem/src/site/resources/.nojekyll diff --git a/src/site/resources/css/site.css b/rome-certiorem/src/site/resources/css/site.css similarity index 100% rename from src/site/resources/css/site.css rename to rome-certiorem/src/site/resources/css/site.css diff --git a/src/site/resources/images/romelogo.png b/rome-certiorem/src/site/resources/images/romelogo.png similarity index 100% rename from src/site/resources/images/romelogo.png rename to rome-certiorem/src/site/resources/images/romelogo.png diff --git a/src/site/site.xml b/rome-certiorem/src/site/site.xml similarity index 100% rename from src/site/site.xml rename to rome-certiorem/src/site/site.xml diff --git a/src/test/java/com/rometools/certiorem/hub/AlwaysVerifier.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/AlwaysVerifier.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/AlwaysVerifier.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/AlwaysVerifier.java diff --git a/src/test/java/com/rometools/certiorem/hub/ControllerTest.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/ControllerTest.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/ControllerTest.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/ControllerTest.java diff --git a/src/test/java/com/rometools/certiorem/hub/DeltaSyndFeedInfoTest.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/DeltaSyndFeedInfoTest.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/DeltaSyndFeedInfoTest.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/DeltaSyndFeedInfoTest.java diff --git a/src/test/java/com/rometools/certiorem/hub/ExceptionVerifier.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/ExceptionVerifier.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/ExceptionVerifier.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/ExceptionVerifier.java diff --git a/src/test/java/com/rometools/certiorem/hub/NeverVerifier.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/NeverVerifier.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/NeverVerifier.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/NeverVerifier.java diff --git a/src/test/java/com/rometools/certiorem/hub/data/AbstractDAOTest.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/data/AbstractDAOTest.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/data/AbstractDAOTest.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/data/AbstractDAOTest.java diff --git a/src/test/java/com/rometools/certiorem/hub/data/ram/InMemoryDAOTest.java b/rome-certiorem/src/test/java/com/rometools/certiorem/hub/data/ram/InMemoryDAOTest.java similarity index 100% rename from src/test/java/com/rometools/certiorem/hub/data/ram/InMemoryDAOTest.java rename to rome-certiorem/src/test/java/com/rometools/certiorem/hub/data/ram/InMemoryDAOTest.java diff --git a/src/test/resources/.gitignore b/rome-certiorem/src/test/resources/.gitignore similarity index 100% rename from src/test/resources/.gitignore rename to rome-certiorem/src/test/resources/.gitignore diff --git a/src/test/resources/logback-test.xml b/rome-certiorem/src/test/resources/logback-test.xml similarity index 90% rename from src/test/resources/logback-test.xml rename to rome-certiorem/src/test/resources/logback-test.xml index 44dea42..c34b099 100644 --- a/src/test/resources/logback-test.xml +++ b/rome-certiorem/src/test/resources/logback-test.xml @@ -1,13 +1,13 @@ - - - - - %d{HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n - - - - - - - + + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n + + + + + + + \ No newline at end of file