Skip to content

Commit

Permalink
Merge pull request #1 from edmundoa/graylog-2.0
Browse files Browse the repository at this point in the history
Graylog 2.0
  • Loading branch information
Marius Sturm committed May 2, 2016
2 parents f6eb28f + 5d40864 commit f365a6a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# Graylog Neo4jOutput Plugin (Experimental)

Welcome to your new Graylog plugin!
**Required Graylog version:** 2.0 and later

Please refer to http://docs.graylog.org/en/latest/pages/plugins.html for documentation on how to write
plugins for Graylog.
Installation
------------

[Download the plugin](https://github.com/mariussturm/graylog-plugin-output-neo4j/releases) and place the .jar file in
your Graylog plugin directory. The plugin directory is the plugins/ folder relative from your graylog-server directory
by default and can be configured in your graylog.conf file.

Restart graylog-server and you are done.

Getting started
---------------

This project is using Maven 3 and requires Java 7 or higher. The plugin will require Graylog 1.0.0 or higher.
This project is using Maven and requires Java 8 or higher.

* Clone this repository.
* Run `mvn package` to build a JAR file.
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.graylog.plugins</groupId>
<artifactId>plugin-output-neo4j</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>${project.artifactId}</name>
Expand All @@ -17,31 +17,31 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<graylog2.version>1.0.0</graylog2.version>
<graylog2.version>2.0.0</graylog2.version>
<graylog2.plugin-dir>/usr/share/graylog-server/plugin</graylog2.plugin-dir>
</properties>

<dependencies>
<dependency>
<groupId>org.graylog2</groupId>
<artifactId>graylog2-plugin</artifactId>
<artifactId>graylog2-server</artifactId>
<version>${graylog2.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.17</version>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>2.17</version>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>com.floreysoft</groupId>
<artifactId>jmte</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public URI getURL() {

@Override
public Version getVersion() {
return new Version(1, 0, 0);
return new Version(1, 1, 0, "SNAPSHOT");
}

@Override
Expand All @@ -41,7 +41,7 @@ public String getDescription() {

@Override
public Version getRequiredVersion() {
return new Version(1, 0, 0);
return new Version(2, 0, 0);
}

@Override
Expand Down

0 comments on commit f365a6a

Please sign in to comment.