Spark/pom.xml
Plyha ee1dc776f8
Disable meet plugin
There is currently no way to turn off Meet from the Openfire console due to the spaces in the name. Therefore, so that users do not face network load, you need to turn off this plugin.
2021-06-11 10:50:53 +03:00

132 lines
4.9 KiB
XML

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.igniterealtime.spark</groupId>
<artifactId>parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spark (parent)</name>
<description>
Spark is an Open Source, cross-platform IM client optimized for businesses and organizations. It features
built-in support for group chat, telephony integration, and strong security. It also offers a great end-user
experience with features like in-line spell checking, group chat room bookmarks, and tabbed conversations.
Combined with the Openfire server, Spark is the easiest and best alternative to using un-secure public IM
networks.
</description>
<url>http://www.igniterealtime.org/projects/spark/</url>
<inceptionYear>2006</inceptionYear>
<organization>
<name>Ignite Realtime</name>
<url>http://www.igniterealtime.org</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>jira</system>
<url>http://www.igniterealtime.org/issues/browse/SPARK</url>
</issueManagement>
<scm>
<connection>https://github.com/igniterealtime/Spark.git</connection>
<developerConnection>https://github.com/igniterealtime/Spark.git</developerConnection>
<url>https://github.com/igniterealtime/Spark</url>
</scm>
<contributors>
<contributor>
<name>Vacant</name>
<roles>
<role>Project Lead</role>
</roles>
<organization>Ignite Realtime</organization>
<organizationUrl>http://www.igniterealtime.org</organizationUrl>
</contributor>
</contributors>
<developers>
<developer>
<name>Guus der Kinderen</name>
<roles>
<role>Developer</role>
</roles>
<email>guus.der.kinderen@gmail.com</email>
<timezone>+1</timezone>
<organization>Ignite Realtime</organization>
<organizationUrl>http://www.igniterealtime.org</organizationUrl>
</developer>
</developers>
<modules>
<module>core</module>
<module>emoticons</module>
<module>plugins/assembly-descriptor</module>
<!--<module>plugins/battleships</module>-->
<module>plugins/apple</module>
<module>plugins/fastpath</module>
<module>plugins/fileupload</module>
<module>plugins/flashing</module>
<module>plugins/growl</module>
<!--<module>plugins/jingle</module>-->
<!--<module>plugins/meet</module>-->
<!--<module>plugins/otr</module>-->
<module>plugins/reversi</module>
<module>plugins/roar</module>
<module>plugins/tictactoe</module>
<!--<module>plugins/spelling</module>-->
<!--<module>plugins/sip</module>-->
<!--<module>plugins/systemtray</module>-->
<module>plugins/transferguard</module>
<module>plugins/translator</module>
<module>distribution</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dependency.smack.version>4.3.4</dependency.smack.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<!--
Java has trouble reading translations from UTF-8 files. To work around that,
this plugin ensures that Java-compatible encoding is used.
See https://stackoverflow.com/questions/4659929/how-to-use-utf-8-in-resource-properties-with-resourcebundle
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>native2ascii-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<executions>
<execution>
<id>native2ascii</id>
<goals>
<goal>native2ascii</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>