mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-08-18 02:56:24 +00:00
146 lines
5.8 KiB
XML
146 lines
5.8 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.1.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>https://igniterealtime.org/projects/spark/</url>
|
|
<inceptionYear>2006</inceptionYear>
|
|
|
|
<organization>
|
|
<name>Ignite Realtime</name>
|
|
<url>https://igniterealtime.org</url>
|
|
</organization>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<issueManagement>
|
|
<system>jira</system>
|
|
<url>https://igniterealtime.atlassian.net/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>
|
|
<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>https://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/flashing</module>
|
|
<module>plugins/growl</module>
|
|
<!-- <module>plugins/phone</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/transferguard</module>
|
|
<module>plugins/translator</module>
|
|
<module>distribution</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<dependency.smack.version>4.5.0-rc1</dependency.smack.version>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
</properties>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.15.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<version>3.6.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>enforce-dependency-convergence</id>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
<configuration>
|
|
<rules>
|
|
<dependencyConvergence/>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>enforce-maven</id>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
<configuration>
|
|
<rules>
|
|
<requireMavenVersion>
|
|
<version>[3.6.3,)</version>
|
|
</requireMavenVersion>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|