source: contrib/funambol/PushMailSMSSender/pom.xml @ 1356

Revision 1356, 10.5 KB checked in by emersonfaria, 15 years ago (diff)

Ticket #627 - Feito check-in do modulo PushMailSMSSender.

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3/*
4 * Funambol is a mobile platform developed by Funambol, Inc.
5 * Copyright (C) 2006 - 2007 Funambol, Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU Affero General Public License version 3 as published by
9 * the Free Software Foundation with the addition of the following permission
10 * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED
11 * WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE
12 * WARRANTY OF NON INFRINGEMENT  OF THIRD PARTY RIGHTS.
13 *
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program; if not, see http://www.gnu.org/licenses or write to
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22 * MA 02110-1301 USA.
23 *
24 * You can contact Funambol, Inc. headquarters at 643 Bair Island Road, Suite
25 * 305, Redwood City, CA 94063, USA, or at email address info@funambol.com.
26 *
27 * The interactive user interfaces in modified source and object code versions
28 * of this program must display Appropriate Legal Notices, as required under
29 * Section 5 of the GNU Affero General Public License version 3.
30 *
31 * In accordance with Section 7(b) of the GNU Affero General Public License
32 * version 3, these Appropriate Legal Notices must retain the display of the
33 * "Powered by Funambol" logo. If the display of the logo is not reasonably
34 * feasible for technical reasons, the Appropriate Legal Notices must display
35 * the words "Powered by Funambol".
36 */
37-->
38<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">
39    <modelVersion>4.0.0</modelVersion>
40    <artifactId>PushMailSMSSender</artifactId>
41    <groupId>br.gov.serpro.funambol.pushmail</groupId>
42    <version>1.0</version>
43    <name>br.gov.serpro.funambol.pushmail PushMailSMSSender Module</name>
44    <packaging>s4j</packaging>
45
46    <!--
47        SITE
48    -->
49    <distributionManagement>
50        <site>
51            <id>local</id>
52            <url>file:///root/target/deploy/site</url>
53        </site>
54    </distributionManagement>
55
56    <!--
57        REPORTING
58    -->
59    <reporting>
60        <plugins>
61            <plugin>
62                <groupId>org.apache.maven.plugins</groupId>
63                <artifactId>maven-jxr-plugin</artifactId>
64                <configuration>
65                    <aggregate>true</aggregate>
66                </configuration>
67            </plugin>
68            <plugin>
69                <groupId>org.apache.maven.plugins</groupId>
70                <artifactId>maven-pmd-plugin</artifactId>
71            </plugin>
72            <plugin>
73                <groupId>org.apache.maven.plugins</groupId>
74                <artifactId>maven-javadoc-plugin</artifactId>
75                <configuration>
76                    <aggregate>true</aggregate>
77                </configuration>
78            </plugin>
79            <plugin>
80                <groupId>org.apache.maven.plugins</groupId>
81                <artifactId>maven-project-info-reports-plugin</artifactId>
82                <reportSets>
83                    <reportSet>
84                        <reports>
85                            <report>dependencies</report>
86                            <report>mailing-list</report>
87                            <report>issue-tracking</report>
88                        </reports>
89                    </reportSet>
90                </reportSets>
91            </plugin>
92
93        </plugins>
94    </reporting>
95
96    <!--
97        DEPENDENCIES
98    -->
99    <dependencies>
100        <dependency>
101            <artifactId>ds-server</artifactId>
102            <groupId>funambol</groupId>
103            <version>7.0.4</version>
104            <exclusions>
105                <exclusion>
106                    <artifactId>ant</artifactId>
107                    <groupId>ant</groupId>
108                </exclusion>
109                <exclusion>
110                    <artifactId>avalon-framework</artifactId>
111                    <groupId>avalon-framework</groupId>
112                </exclusion>
113                <exclusion>
114                    <artifactId>bcel</artifactId>
115                    <groupId>bcel</groupId>
116                </exclusion>
117               
118                <exclusion>
119                    <artifactId>commons-beanutils</artifactId>
120                    <groupId>commons-beanutils</groupId>
121                </exclusion>
122                <exclusion>
123                    <artifactId>commons-codec</artifactId>
124                    <groupId>commons-codec</groupId>
125                </exclusion>
126                <exclusion>
127                    <artifactId>commons-collections</artifactId>
128                    <groupId>commons-collections</groupId>
129                </exclusion>
130                <exclusion>
131                    <artifactId>commons-digester</artifactId>
132                    <groupId>commons-digester</groupId>
133                </exclusion>
134                <exclusion>
135                    <artifactId>commons-discovery</artifactId>
136                    <groupId>commons-discovery</groupId>
137                </exclusion>
138                <exclusion>
139                    <artifactId>commons-httpclient</artifactId>
140                    <groupId>commons-httpclient</groupId>
141                </exclusion>
142                <exclusion>
143                    <artifactId>commons-lang</artifactId>
144                    <groupId>commons-lang</groupId>
145                </exclusion>
146                <exclusion>
147                    <artifactId>commons-logging</artifactId>
148                    <groupId>commons-logging</groupId>
149                </exclusion>
150                <exclusion>
151                    <artifactId>commons-logging-api</artifactId>
152                    <groupId>commons-logging</groupId>
153                </exclusion>
154                <exclusion>
155                    <artifactId>commons-modeler</artifactId>
156                    <groupId>commons-modeler</groupId>
157                </exclusion>
158               
159                <exclusion>
160                    <artifactId>email-core</artifactId>
161                    <groupId>funambol</groupId>
162                </exclusion>
163                <exclusion>
164                    <artifactId>bsh</artifactId>
165                    <groupId>org.beanshell</groupId>
166                </exclusion>
167                <exclusion>
168                    <artifactId>jdom</artifactId>
169                    <groupId>jdom</groupId>
170                </exclusion>
171                <exclusion>
172                    <artifactId>jgroups</artifactId>
173                    <groupId>jgroups</groupId>
174                </exclusion>
175                <exclusion>
176                    <artifactId>ext</artifactId>
177                    <groupId>funambol</groupId>
178                </exclusion>
179                <exclusion>
180                    <artifactId>jibx-bind</artifactId>
181                    <groupId>org.jibx</groupId>
182                </exclusion>
183                <exclusion>
184                    <artifactId>jline</artifactId>
185                    <groupId>jline</groupId>
186                </exclusion>
187                <exclusion>
188                    <artifactId>joda-time</artifactId>
189                    <groupId>joda-time</groupId>
190                </exclusion>
191                <exclusion>
192                    <artifactId>log4j</artifactId>
193                    <groupId>log4j</groupId>
194                </exclusion>
195                <exclusion>
196                    <artifactId>p6spy</artifactId>
197                    <groupId>p6spy</groupId>
198                </exclusion>
199                <exclusion>
200                    <artifactId>testing-tool</artifactId>
201                    <groupId>funambol</groupId>
202                </exclusion>
203                <exclusion>
204                    <artifactId>vmtools</artifactId>
205                    <groupId>org.vmguys</groupId>
206                </exclusion>
207                <exclusion>
208                    <artifactId>xercesImpl</artifactId>
209                    <groupId>xerces</groupId>
210                </exclusion>
211            </exclusions>
212        </dependency>
213    </dependencies>
214
215    <build>
216        <plugins>
217            <plugin>
218                <groupId>org.apache.maven.plugins</groupId>
219                <artifactId>maven-jar-plugin</artifactId>
220                <configuration>
221                    <archive>
222                        <manifest>
223                            <addClasspath>true</addClasspath>
224                            <addExtensions />
225                            <classpathPrefix />
226                        </manifest>
227                    </archive>
228                </configuration>
229            </plugin>
230
231            <!--
232                The Funambol Maven Plugin enables the use of the following
233                goals:
234                - funambol:s4j -} to create a Funambol module archive
235            -->
236            <plugin>
237                <groupId>funambol</groupId>
238                <artifactId>funambol-plugin</artifactId>
239                <version>1.0.7</version>
240                <extensions>true</extensions>
241                <configuration>
242                <!--    <excludes>
243                        <exclude>funambol:server-framework</exclude>
244                        <exclude>funambol:core-framework</exclude>
245                        <exclude>funambol:ext</exclude>
246                        <exclude>funambol:ds-server</exclude>
247                    </excludes>-->
248                </configuration>
249            </plugin>
250            <plugin>
251                <artifactId>maven-compiler-plugin</artifactId>
252                <version>2.0.2</version>
253                <configuration>
254                    <source>1.5</source>
255                    <target>1.5</target>
256                </configuration>
257            </plugin>
258        </plugins>
259    </build>
260
261    <!--
262         This is the central Funambol repostiry where all funambol related
263         artifacts are stored
264    -->
265    <repositories>
266        <repository>
267            <id>artifacts</id>
268            <url>http://m2.funambol.org/repositories/artifacts</url>
269        </repository>
270    </repositories>
271    <pluginRepositories>
272        <pluginRepository>
273            <id>snapshots</id>
274            <url>http://m2.funambol.org/repositories/snapshots</url>
275        </pluginRepository>
276    </pluginRepositories>
277
278</project>
Note: See TracBrowser for help on using the repository browser.