Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

Commit

Permalink
use shared classloader so other plugins can contribute functions
Browse files Browse the repository at this point in the history
fixes #81
  • Loading branch information
kroepke committed Aug 19, 2016
1 parent d275227 commit c3380dd
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pom.xml
Expand Up @@ -194,9 +194,11 @@
</resource>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.properties</exclude>
</excludes>
<includes>
<include>**/version.properties</include>
<include>**/graylog-plugin.properties</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
<pluginManagement>
Expand Down
@@ -0,0 +1,12 @@
# The plugin version
version=${project.version}

# The required Graylog server version
graylog.version=${graylog.version}

# When set to true (the default) the plugin gets a separate class loader
# when loading the plugin. When set to false, the plugin shares a class loader
# with other plugins that have isolated=false.
#
# Do not disable this unless this plugin depends on another plugin!
isolated=false

0 comments on commit c3380dd

Please sign in to comment.