mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-03-24 16:35:30 +00:00
46 lines
1.3 KiB
XML
46 lines
1.3 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>
|
|
|
|
<parent>
|
|
<groupId>org.igniterealtime.spark.plugins</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
<relativePath>../plugin/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>otr</artifactId>
|
|
<version>0.5</version>
|
|
|
|
<name>OTR Plugin</name>
|
|
<description>Off-The-Record (OTR) message encryption.</description>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Holger Bergunde</name>
|
|
<email>holger@bergunde.de</email>
|
|
<url>http://www.stytrix.de</url>
|
|
<roles>
|
|
<role>Author</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jitsi</groupId>
|
|
<artifactId>org.otr4j</artifactId>
|
|
<version>0.23</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|