-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pom.xml
54 lines (48 loc) · 1.39 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>tigase</groupId>
<artifactId>tigase-projects-parent</artifactId>
<version>1.0.4</version>
<relativePath />
</parent>
<properties>
<packaging.type>pom</packaging.type>
<dist_path>.</dist_path>
<guide_name>Tigase_SiskinIM</guide_name>
<docs.source.directory>./Documentation</docs.source.directory>
<documentation_phases.all_converters>generate-resources</documentation_phases.all_converters>
</properties>
<modelVersion>4.0.0</modelVersion>
<artifactId>docs</artifactId>
<name>Siskin IM Documentation</name>
<packaging>pom</packaging>
<groupId>iosdocs</groupId>
<version>v1.0</version>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
<excludes>
<exclude>**/*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>format</id>
<phase/>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>tigase</id>
<url>https://maven-repo.tigase.org/repository/tigase</url>
</repository>
</repositories>
</project>