-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e53dfd0
commit f8ba7f5
Showing
3 changed files
with
481 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<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> | ||
<artifactId>plugins</artifactId> | ||
<groupId>org.igniterealtime.openfire</groupId> | ||
<version>4.8.1</version> | ||
</parent> | ||
|
||
<groupId>org.igniterealtime.openfire</groupId> | ||
<artifactId>pade</artifactId> | ||
<version>0.9.6-SNAPSHOT</version> | ||
|
||
<name>ofmeet</name> | ||
<description>HTTP Online meeting solution for Openfire using Jitsi Meet</description> | ||
|
||
<properties> | ||
</properties> | ||
|
||
<build> | ||
<sourceDirectory>src/java</sourceDirectory> | ||
<testSourceDirectory>src/test</testSourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-jspc-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>igniterealtime</id> | ||
<name>Ignite Realtime Repository</name> | ||
<url>https://igniterealtime.org/archiva/repository/maven/</url> | ||
</repository> | ||
<repository> | ||
<id>jitsi-maven-repository-releases</id> | ||
<layout>default</layout> | ||
<name>Jitsi Maven Repository (Releases)</name> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
<url>https://github.com/jitsi/jitsi-maven-repository/raw/master/releases/</url> | ||
</repository> | ||
<repository> | ||
<id>jitsi-maven-repository-snapshots</id> | ||
<layout>default</layout> | ||
<name>Jitsi Maven Repository (Snapshots)</name> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<url>https://github.com/jitsi/jitsi-maven-repository/raw/master/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>localLibs</id> | ||
<name>localLibs</name> | ||
<url>file://${project.basedir}/lib</url> | ||
</repository> | ||
|
||
</repositories> | ||
|
||
<pluginRepositories> | ||
<!-- Typically used to retrieve Maven plugins that are used by this project. | ||
This apparently is also used to botain the dependencies _used by_ these | ||
plugins (such as the openfire-plugin-assembly-descriptor, needed to | ||
package the project as an Openfire plugin!) --> | ||
<pluginRepository> | ||
<id>igniterealtime</id> | ||
<name>Ignite Realtime Repository</name> | ||
<url>https://igniterealtime.org/archiva/repository/maven/</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
</project> |
Oops, something went wrong.