Commit 1e146cd2 authored by Leon Roy's avatar Leon Roy Committed by leonroy

monitoring plugin integrating Jive Monitoring Plugin and Stefan Reuter's Open...

monitoring plugin integrating Jive Monitoring Plugin and Stefan Reuter's Open Archive plugin to give both XEP-0136 support and group as well as individual chat archiving.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/plugins@13315 b35dd754-fafc-0310-a699-88a17e54d16e
parent e37b2331
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jivesoftware.openfire.plugin</groupId>
<artifactId>monitoring</artifactId>
<packaging>openfire-plugin</packaging>
<version>1.3.0-SNAPSHOT</version>
<name>Monitoring Service</name>
<description>Monitors conversations and statistics of the server.</description>
<url>www.gltd.net</url>
<organization>
<name>Globility</name>
</organization>
<dependencies>
<!-- openfire -->
<dependency>
<groupId>org.igniterealtime.openfire</groupId>
<artifactId>openfire</artifactId>
<version>3.7.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>servlet-api-2.5</artifactId>
<version>6.1.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.picocontainer</groupId>
<artifactId>picocontainer</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>dwr</groupId>
<artifactId>dwr</artifactId>
<version>1.1.3</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>1.4.8</version>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.13</version>
</dependency>
<dependency>
<groupId>org</groupId>
<artifactId>jrobin</artifactId>
<version>1.4.0</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.reucon.maven.plugins</groupId>
<artifactId>maven-openfire-plugin</artifactId>
<extensions>true</extensions>
<version>1.0.1</version>
<configuration>
<jspPackageName>org.jivesoftware.openfire.plugin.archive</jspPackageName>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>install</phase>
<configuration>
<target>
<copy file="target/${project.artifactId}.jar"
tofile="../openfire/target/openfire/plugins/${project.artifactId}.jar" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment