Dear Wiki user, You have subscribed to a wiki page or wiki category on "Blur Wiki" for change notification.
The "HowToRelease" page has been changed by AaronMcCurry: https://wiki.apache.org/blur/HowToRelease?action=diff&rev1=20&rev2=21 {{{ mvn site -Ddependency.locations.enabled=false mvn site:stage - rm -r ./docs/site/* - cp -r ./target/staging/* ./docs/site/ mvn package git add ./docs/site/ @@ -186, +184 @@ Download the artifacts and try out some of these things: * Blur Getting Started [[http://blur.staging.apache.org/blur/docs/0.2.0/getting-started.html|Getting Started]] * Check the MD5 checksums - * Licensing check: (download [[http://incubator.apache.org/rat/|RAT]] and run java -jar apache-rat-*.jar on the Blur tarballs. Known violations include generated files (e.g. docs), and a few plain text files like CHANGES.txt. + * Licensing check: (download [[http://incubator.apache.org/rat/|RAT]] and run java -jar apache-rat-*.jar on the Blur tarballs. + + Known violations include: + + Basic text files + * {{{LICENSE}}} + * {{{CHANGES.txt}}} + * {{{DISCLAIMER}}} + * {{{NOTICE}}} + * {{{README}}} + * {{{**/README.textile}}} + * {{{**/.classpath}}} + * {{{**/.project}}} + * {{{**/.settings/**}}} + + Contains a list of english words that are used for load testing, adding a header would make the simple parsers more complex. + * {{{**/src/main/resources/org/apache/blur/thrift/util/words.txt}}} + + For some reason the BSD License for d3 is not picked up in RAT, but they are accounted for in the LICENSE file. + * {{{**/src/main/webapp/js/d3.v2.js}}} + * {{{**/src/main/webapp/js/d3.v2.min.js}}} + + License and Notice files for Blur. + * {{{**/src/main/resources/license-bin.noinclude}}} + * {{{**/src/main/resources/license-notes.txt}}} + * {{{**/src/main/resources/NOTICE-src.txt}}} + + Default configuration files used by Binary Blur artifact. + * {{{**/src/main/scripts/conf/controllers}}} + * {{{**/src/main/scripts/conf/default_zoo.cfg}}} + * {{{**/src/main/scripts/conf/shards}}} + * {{{**/src/main/scripts/conf/zookeepers}}} + + Generated Thrift files. + * {{{**/src/main/scripts/interface/gen-html/Blur.html}}} + * {{{**/src/main/scripts/interface/gen-html/index.html}}} + + Used to create empty directories in git. + * {{{**/.empty}}} + + ==== Blur Console Exclusions ==== + Blur Admin is a Ruby on Rails application in the blur contributions (contrib/blur-console) and it has many embedded javascript and css libraries. + + These javascript libs are accounted for in the LICENSE-src file in distribution/src/main/resources. + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/d3/**}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/backbone/**}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/flot/**}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/jquery.*.js}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/modernizr.js}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/sorttable.js}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/underscore.js}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/javascripts/datatables.fnReloadAjax.js}}} + + These css libs are accounted for in the LICENSE-src file in distribution/src/main/resources. + * {{{contrib/blur-console/blur-admin/vendor/assets/stylesheets/jquery*.css}}} + * {{{contrib/blur-console/blur-admin/vendor/assets/stylesheets/ui.dynatree.css}}} + + Ruby gems. + * {{{contrib/blur-console/blur-admin/vendor/gems/cancan/**}}} + + Generated during the rails build process in the blur-admin project. + * {{{contrib/blur-console/blur-admin/Gemfile.lock}}} + + = Commit and Tag =
