-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpom.xml
More file actions
104 lines (92 loc) · 3.55 KB
/
Copy pathpom.xml
File metadata and controls
104 lines (92 loc) · 3.55 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>net.frontlinesms.core</groupId>
<artifactId>frontlinesms-super-project</artifactId>
<name>frontlinesms super project</name>
<version>1.7.00-beta-4-test-SNAPSHOT</version>
<description>Parent POM for inheritance by POMs in FrontlineSMS core, dist, plugins etc.</description>
<packaging>pom</packaging>
<licenses>
<license>
<name>GNU Lesser General Public License v3 or later</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>manual</distribution>
<comments>
FrontlineSMS - http://www.frontlinesms.com
Copyright 2007, 2008 kiwanja
This file is part of FrontlineSMS.
FrontlineSMS is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
FrontlineSMS is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with FrontlineSMS. If not, see http://www.gnu.org/licenses/.
</comments>
</license>
</licenses>
<scm>
<connection>scm:git://github.com/${github.projectOwner}/${github.projectName}.git</connection>
<developerConnection>scm:git:git@github.com:${github.projectOwner}/${github.projectName}.git</developerConnection>
</scm>
<repositories>
<repository>
<id>frontlinesms.repo</id>
<name>FrontlineSMS Maven repository</name>
<url>http://dev.frontlinesms.com/m2repo</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>frontlinesms.repo</id>
<name>FrontlineSMS Maven repository</name>
<url>http://dev.frontlinesms.com/m2repo</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>frontlinesms.repo</id>
<name>FrontlineSMS Maven repository</name>
<url>ftp://dev.frontlinesms.com</url>
</repository>
</distributionManagement>
<properties>
<!-- Force Maven to use UTF-8 encoding when copying resources, rather than using the
platform default. -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- repository dependencies -->
<github.projectOwner>frontlinesms</github.projectOwner>
<github.projectName>${project.artifactId}</github.projectName>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
</build>
<modules>
<module>pom-parent</module>
<module>core</module>
<module>plugin-forms</module>
<module>plugin-httptrigger</module>
<module>plugin-translation</module>
<module>plugin-reminders</module>
<module>masabi-forms</module>
<module>dist</module>
</modules>
</project>