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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
| <?xml version="1.0" encoding="UTF-8"?>
<project>
<name>Omeg@Box</name>
<modelVersion>4.0.0</modelVersion>
<groupId>ITSRET</groupId>
<artifactId>omegabox</artifactId>
<packaging>war</packaging>
<version>0.0.1</version>
<description>Deploiement OmegaBox</description>
<url>http://localhost:8080/omegabox/</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>servlet</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache</groupId>
<artifactId>jasper</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache</groupId>
<artifactId>tools</artifactId>
<version>1.6.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.tools</groupId>
<artifactId>ant</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>string</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache</groupId>
<artifactId>poi</artifactId>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>org.apache</groupId>
<artifactId>struts</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache</groupId>
<artifactId>log4j</artifactId>
<version>1.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.wutka</groupId>
<artifactId>jox</artifactId>
<version>1.1.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>jdbc</artifactId>
<version>3.0.15</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>oracle</groupId>
<artifactId>jdbc</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>lang</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>datetime</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>httpunit</groupId>
<artifactId>httpunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.allen_sauer.gwt</groupId>
<artifactId>dragdrop</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.google</groupId>
<artifactId>gwt</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<developers>
<developer>
<id>A138049</id>
<name>Ronan Kerleo</name>
<email>Ronan.Kerleo@socgen.com</email>
</developer>
<developer>
<id>A303902</id>
<name>Patrick Guillot</name>
<email>Patrick.Guillot@socgen.com</email>
</developer>
<developer>
<id>A304627</id>
<name>Xavier Marc</name>
<email>Xavier.Marc@socgen.com</email>
</developer>
<developer>
<id>A303428</id>
<name>Emmanuel Abgrall</name>
<email>Emmanuel.Abgrall@socgen.com</email>
</developer>
</developers>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>1024m</maxmemory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<build>
<sourceDirectory>${basedir}/WEB-INF/src</sourceDirectory>
<outputDirectory>target/classes</outputDirectory>
<testSourceDirectory>${basedir}/WEB-INF/test</testSourceDirectory>
<testOutputDirectory>target/test</testOutputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<outputDirectory>target/webapp</outputDirectory>
<warName>omegabox</warName>
<warSourceDirectory>${basedir}</warSourceDirectory>
<warSourceIncludes>**/*.html,**/*.js,**/*.jsp,**/*.class,**/*.xls,**/*.tld,**/*.xml,**/*.xlt,**/WEB-INF/lib/*.jar,**/*.css,**/*.properties,**/*.zip,**/*.png,**/*.jpg,**/*.gif</warSourceIncludes>
<warSourceExcludes>**/work/**/*.xml,**/work/**/*.gif,**/work/**/*.css,**/work/**/*.js,**/work/**/*.html,**/target/**/*.js,**/target/**/*.html,**/target/**/*.jar,**/work/**/*.class,**/work/**/*.java,**/target/**/*.java,**/target/**/*.css,**/target/**/*.class,**/target/**/*.gif,**/target/**/*.png,**/target/**/*.jpg,**/target/**/*.xml,**/target/**/*.tld,**/target/**/*.xls,**/target/**/*.xlt,**/target/**/*.jsp,**/target/**/*.properties,**/target/**/*.zip</warSourceExcludes>
<webxml>${basedir}/WEB-INF/</webxml>
<webResources>
<resource>
<directory>work/www/com.socgen.omg.omegabox.gwt.omegabox</directory>
</resource>
</webResources>
</configuration>
<executions>
<execution>
<goals>
<goal>war</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<configuration>
<url>http://localhost:8080/manager</url>
<warFile>target/webapp/omegabox.war</warFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.0</version>
<configuration>
<goals>scm</goals>
<connectionType>connection</connectionType>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<filesets>
<fileset>
<directory>${basedir}</directory>
<includes>
<include>soapui.log</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>1.7</version>
<configuration>
<projectFile>D:\ws_SoapUI\TestConsultationImageValeurCDN-soapui-project.xml</projectFile>
<testSuite>TestConsultationImageValeurCDN</testSuite>
<outputFolder>${basedir}\target\test_SoapUI\</outputFolder>
</configuration>
</plugin>
</plugins>
</build>
<ciManagement>
<system>continuum</system>
<url>http://localhost:8070/continuum</url>
</ciManagement>
<scm>
<connection>scm:local|D:\|omegabox</connection>
</scm>
</project> |
Partager