Added notification tester, did some other clean ups
[bm-groupware-server.git] / bm-webconfig / webconfig-webapp / pom.xml
blob31ac58263a885142d575028f9b50021eb6ce8c14
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>bmessage</groupId>
5     <artifactId>webconfig-webapp</artifactId>
6     <version>0.1</version>
7     <packaging>war</packaging>
8     <name>bionicmessage webconfig</name>
9     <url>http://bionicmessage.net</url>
10     <repositories>
11         <repository>
12             <id>gson</id>
13             <url>http://google-gson.googlecode.com/svn/mavenrepo</url>
14             <snapshots>
15                 <enabled>true</enabled>
16             </snapshots>
17             <releases>
18                 <enabled>true</enabled>
19             </releases>
20         </repository>
21     </repositories>
22     <dependencies>
24         <!--
25             Internal dependencies
26         -->
27         <dependency>
28             <groupId>funambol</groupId>
29             <artifactId>ds-server</artifactId>
30             <version>7.1.0-SNAPSHOT</version>
31         </dependency>
32         <dependency>
33             <groupId>funambol</groupId>
34             <artifactId>pim-framework</artifactId>
35             <version>7.1.0-SNAPSHOT</version>
36         </dependency>
37         <dependency>
38             <groupId>funambol</groupId>
39             <artifactId>foundation-core</artifactId>
40             <version>7.1.0-SNAPSHOT</version>
41         </dependency>
42         
43         <!--
44             External dependencies
45         -->
46         <dependency>
47             <groupId>javax.servlet</groupId>
48             <artifactId>jstl</artifactId>
49             <version>1.0.6</version>
50         </dependency>
51         <dependency>
52             <groupId>taglibs</groupId>
53             <artifactId>standard</artifactId>
54             <version>1.0.6</version>
55         </dependency>
56         <dependency>
57             <artifactId>log4j</artifactId>
58             <groupId>log4j</groupId>
59             <version>1.2.14</version>
60         </dependency>
61         <dependency>
62             <groupId>commons-codec</groupId>
63             <artifactId>commons-codec</artifactId>
64             <version>1.3</version>
65         </dependency>
66         <dependency>
67             <artifactId>commons-httpclient</artifactId>
68             <groupId>commons-httpclient</groupId>
69             <version>3.0</version>
70             <exclusions>
71                 <exclusion>
72                     <groupId>junit</groupId>
73                     <artifactId>junit</artifactId>
74                 </exclusion>
75                 <exclusion>
76                     <groupId>commons-logging</groupId>
77                     <artifactId>commons-logging</artifactId>
78                 </exclusion>
79                 <exclusion>
80                     <groupId>commons-codec</groupId>
81                     <artifactId>commons-codec</artifactId>
82                 </exclusion>
83             </exclusions>
84         </dependency>
85         <dependency>
86             <artifactId>joda-time</artifactId>
87             <groupId>joda-time</groupId>
88             <version>1.4</version>
89         </dependency>
90         <dependency>
91             <artifactId>funambol-groupdav-connector</artifactId>
92             <groupId>bmessage</groupId>
93             <version>2.3</version>
94         </dependency>
95         <dependency>
96             <artifactId>httpauth</artifactId>
97             <groupId>bmessage</groupId>
98             <version>1.0-SNAPSHOT</version>
99         </dependency>
100         <dependency>
101             <artifactId>funambol-citadel-connector</artifactId>
102             <groupId>bmessage</groupId>
103             <version>2.1</version>
104             <exclusions>
105                 <exclusion>
106                     <groupId>commons-beanutils</groupId>
107                     <artifactId>commons-beanutils</artifactId>
108                 </exclusion>
109                 <exclusion>
110                     <groupId>commons-digester</groupId>
111                     <artifactId>commons-digester</artifactId>
112                 </exclusion>
113                 <exclusion>
114                     <groupId>junit</groupId>
115                     <artifactId>junit</artifactId>
116                 </exclusion>
117                 <exclusion>
118                     <groupId>directory-naming</groupId>
119                     <artifactId>naming-core</artifactId>
120                 </exclusion>
121                 <exclusion>
122                     <groupId>commons-modeller</groupId>
123                     <artifactId>commons-modeller</artifactId>
124                 </exclusion>
125             </exclusions>
126         </dependency>
127         <dependency>
128             <artifactId>bmclickatell</artifactId>
129             <groupId>bmessage</groupId>
130             <version>1.0-SNAPSHOT</version>
131         </dependency>
132         <dependency>
133             <artifactId>gson</artifactId>
134             <groupId>com.google.code.gson</groupId>
135             <version>1.2</version>
136         </dependency>
137     </dependencies>
138     <build>
139         <plugins>
140             <plugin>
141                 <groupId>org.apache.maven.plugins</groupId>
142                 <artifactId>maven-compiler-plugin</artifactId>
143                 <version>2.0.2</version>
144                 <configuration>
145                     <source>1.5</source>
146                     <target>1.5</target>
147                 </configuration>
148             </plugin>
149   <!--    <plugin>
150         <artifactId>maven-war-plugin</artifactId>
151         <configuration>
152        
153           <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
154           <archive>
155             <manifest>
156               <addClasspath>true</addClasspath>
157               <classpathPrefix>lib/</classpathPrefix>
158             </manifest>
159           </archive>
160         </configuration>
161       </plugin> -->
162             <plugin>
163                 <artifactId>maven-source-plugin</artifactId>
164                 <executions>
165                     <execution>
166                         <id>attach-sources</id>
167                         <goals>
168                             <goal>jar</goal>
169                         </goals>
170                     </execution>
171                 </executions>
172             </plugin>
173         </plugins>
174     </build>
175 </project>