You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2016/08/30 16:06:56 UTC

svn commit: r1758413 - /manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties

Author: kwright
Date: Tue Aug 30 16:06:56 2016
New Revision: 1758413

URL: http://svn.apache.org/viewvc?rev=1758413&view=rev
Log:
Add plugin properties file

Added:
    manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties   (with props)

Added: manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties
URL: http://svn.apache.org/viewvc/manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties?rev=1758413&view=auto
==============================================================================
--- manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties (added)
+++ manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties Tue Aug 30 16:06:56 2016
@@ -0,0 +1,59 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You 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.
+
+### mandatory elements for all plugins:
+#
+# 'description': simple summary of the plugin
+description=ApacheManifoldCF Auth Plugin
+#
+# 'version': plugin's version
+version=1.5
+#
+# 'name': the plugin name
+name=ApacheManifoldCFAuthPlugin
+
+### mandatory elements for jvm plugins :
+#
+# 'jvm': true if the 'classname' class should be loaded
+#  from jar files in the root directory of the plugin.
+#  Note that only jar files in the root directory are
+#  added to the classpath for the plugin! If you need
+#  other resources, package them into a resources jar.
+jvm=true
+#
+# 'classname': the name of the class to load, fully-qualified.
+classname=org.apache.manifoldcf.elasticsearch.MCFAuthorizerPlugin
+#
+# 'java.version' version of java the code is built against
+# use the system property java.specification.version
+# version string must be a sequence of nonnegative decimal integers
+# separated by "."'s and may have leading zeros
+java.version=1.7
+#
+# 'elasticsearch.version' version of elasticsearch compiled against
+# You will have to release a new version of the plugin for each new
+# elasticsearch release. This version is checked when the plugin
+# is loaded so Elasticsearch will refuse to start in the presence of
+# plugins with the incorrect elasticsearch.version.
+elasticsearch.version=2.3.3
+#
+### deprecated elements for jvm plugins :
+#
+# 'isolated': true if the plugin should have its own classloader.
+# passing false is deprecated, and only intended to support plugins 
+# that have hard dependencies against each other. If this is
+# not specified, then the plugin is isolated by default.
+#isolated=${elasticsearch.plugin.isolated}
+#
\ No newline at end of file

Propchange: manifoldcf/integration/elasticsearch-1.5/trunk/plugin-descriptor.properties
------------------------------------------------------------------------------
    svn:eol-style = native