source: contrib/psync/pom.xml @ 1545

Revision 1545, 7.4 KB checked in by wmerlotto, 14 years ago (diff)

Ticket #693 - Incrementado a sincronizacao de contatos, integracao com maven e codigo de autenticacao no LDAP.

RevLine 
[1545]1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3    <modelVersion>4.0.0</modelVersion>
4    <artifactId>funambol-connector</artifactId>
5    <groupId>modules</groupId>
6    <version>8.0</version>
7    <name>Funambol Connector</name>
8    <packaging>s4j</packaging>
9   
10    <!--
11        REPORTING
12    -->
13    <reporting>
14        <plugins>
15            <plugin>
16                <groupId>org.apache.maven.plugins</groupId>
17                <artifactId>maven-jxr-plugin</artifactId>
18                <configuration>
19                    <aggregate>true</aggregate>
20                </configuration>
21            </plugin>
22            <plugin>
23                <groupId>org.apache.maven.plugins</groupId>
24                <artifactId>maven-pmd-plugin</artifactId>
25            </plugin>
26            <plugin>
27                <groupId>org.apache.maven.plugins</groupId>
28                <artifactId>maven-javadoc-plugin</artifactId>
29                <configuration>
30                    <aggregate>true</aggregate>
31                </configuration>
32            </plugin>
33        </plugins>
34    </reporting>
35   
36    <!--
37        DEPENDENCIES
38    -->
39    <dependencies>
40        <dependency>
41            <artifactId>server-framework</artifactId>
42            <groupId>funambol</groupId>
43            <version>8.2.0</version>
44            <scope>provided</scope>
45        </dependency>
46        <dependency>
47            <artifactId>log4j</artifactId>
48            <groupId>log4j</groupId>
49            <version>1.2.14</version>
50            <scope>provided</scope>
51        </dependency>
52        <dependency>
53            <artifactId>admin-framework</artifactId>
54            <groupId>funambol</groupId>
55            <version>8.0.0</version>
56            <scope>provided</scope>
57        </dependency>
58        <dependency>
59            <artifactId>ds-server</artifactId>
60            <groupId>funambol</groupId>
61            <version>8.2.0</version>
62            <scope>provided</scope>
63        </dependency>
64        <dependency>
65            <groupId>funambol</groupId>
66            <artifactId>email-core</artifactId>
67            <version>8.0.0</version>
68            <scope>provided</scope>
69        </dependency>
70        <dependency>
71            <groupId>funambol</groupId>
72            <artifactId>pim-framework</artifactId>
73            <version>8.0.0</version>
74            <scope>provided</scope>
75        </dependency>
76        <dependency>
77            <groupId>funambol</groupId>
78            <artifactId>pim-listener</artifactId>
79            <version>8.0.0</version>
80            <scope>provided</scope>
81        </dependency>
82        <dependency>
83            <groupId>funambol</groupId>
84            <artifactId>push-framework</artifactId>
85            <version>8.0.0</version>
86            <scope>provided</scope>
87        </dependency>
88        <dependency>
89            <groupId>funambol</groupId>
90            <artifactId>foundation-core</artifactId>
91            <version>8.0.0</version>
92            <scope>provided</scope>
93        </dependency>
94        <dependency>
95            <groupId>funambol</groupId>
96            <artifactId>ctp-server</artifactId>
97            <version>8.0.0</version>
98            <scope>provided</scope>
99        </dependency>
100        <dependency>
101            <groupId>funambol</groupId>
102            <artifactId>ctp-client-driver</artifactId>
103            <version>8.0.0</version>
104            <scope>provided</scope>
105        </dependency>
106    </dependencies>
107   
108    <!--
109        Build plug-ins
110    -->
111    <build>
112        <plugins>
113            <plugin>
114                <groupId>org.apache.maven.plugins</groupId>
115                <artifactId>maven-jar-plugin</artifactId>
116                <configuration>
117                    <archive>
118                        <manifest>
119                            <addClasspath>true</addClasspath>                   
120                            <addExtensions/>
121                            <classpathPrefix/>
122                           
123                        </manifest>
124                    </archive>
125                </configuration>
126            </plugin>
127            <plugin>
128                <groupId>org.apache.maven.plugins</groupId>
129                <artifactId>maven-compiler-plugin</artifactId>
130                <configuration>
131                    <source>1.5</source>
132                    <target>1.5</target>
133                </configuration>
134            </plugin>
135           
136            <plugin>
137                <!--
138                    The Funambol Maven Plugin enables the use of the following
139                    goals:
140                    - funambol:s4j -} to create a Funambol module archive
141                -->
142                <groupId>funambol</groupId>
143                <artifactId>funambol-plugin</artifactId>
144                <version>1.0.8</version>
145                <extensions>true</extensions>
146            </plugin>
147        </plugins>
148    </build>
149   
150   
151    <repositories>
152        <repository>
153            <id>funambol-snapshots</id>
154            <releases>
155                <enabled>false</enabled>
156                <updatePolicy>always</updatePolicy>
157                <checksumPolicy>warn</checksumPolicy>
158            </releases>
159            <snapshots>
160                <enabled>true</enabled>
161                <updatePolicy>never</updatePolicy>
162                <checksumPolicy>fail</checksumPolicy>
163            </snapshots>
164            <url>http://m2.funambol.org/repositories/snapshots</url>
165        </repository>
166        <repository>
167            <id>funambol-artifacts</id>
168            <releases>
169                <enabled>true</enabled>
170                <updatePolicy>always</updatePolicy>
171                <checksumPolicy>warn</checksumPolicy>
172            </releases>
173            <snapshots>
174                <enabled>false</enabled>
175                <updatePolicy>never</updatePolicy>
176                <checksumPolicy>fail</checksumPolicy>
177            </snapshots>
178            <url>http://m2.funambol.org/repositories/artifacts</url>
179        </repository>
180        <repository>
181            <id>central</id>
182            <releases>
183                <enabled>true</enabled>
184                <updatePolicy>always</updatePolicy>
185                <checksumPolicy>warn</checksumPolicy>
186            </releases>
187            <snapshots>
188                <enabled>false</enabled>
189                <updatePolicy>never</updatePolicy>
190                <checksumPolicy>fail</checksumPolicy>
191            </snapshots>
192            <url>http://repo1.maven.org/maven2/</url>
193        </repository>
194        <repository>
195            <id>jboss</id>
196            <releases>
197                <enabled>true</enabled>
198                <updatePolicy>always</updatePolicy>
199                <checksumPolicy>warn</checksumPolicy>
200            </releases>
201            <snapshots>
202                <enabled>false</enabled>
203                <updatePolicy>never</updatePolicy>
204                <checksumPolicy>fail</checksumPolicy>
205            </snapshots>
206            <url>http://repository.jboss.com/maven2/</url>
207        </repository>
208    </repositories>
209    <pluginRepositories>
210        <pluginRepository>
211            <id>funambol-pl-snapshots</id>
212            <url>http://m2.funambol.org/repositories/snapshots</url>
213        </pluginRepository>
214        <pluginRepository>
215            <id>funambol-pl-artifacts</id>
216            <url>http://m2.funambol.org/repositories/artifacts</url>
217        </pluginRepository>
218    </pluginRepositories>
219   
220   
221</project>
Note: See TracBrowser for help on using the repository browser.