~vasilev/psiphon/sprint3-579678

« back to all changes in this revision

Viewing changes to trunk/testing/selenium_scripts/selenium/META-INF/maven/org.seleniumhq.selenium.core/selenium-core/pom.xml

  • Committer: Adam Pritchard
  • Date: 2010-07-16 19:31:33 UTC
  • mfrom: (95.1.8 testing-2.5)
  • Revision ID: adam@adampsidev-20100716193133-n6rxnrqwt68d0ck8
Made Selenium work; added some tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
    <modelVersion>4.0.0</modelVersion>
4
4
    <groupId>org.seleniumhq.selenium.core</groupId>
5
5
    <artifactId>selenium-core</artifactId>
6
 
    <version>1.0-beta-2</version>
 
6
    <version>1.0.1</version>
7
7
    <name>Selenium Core</name>
8
8
    <packaging>jar</packaging>
9
9
    <url>http://selenium.seleniumhq.org/projects/core</url>
54
54
                <updatePolicy>never</updatePolicy>
55
55
            </releases>
56
56
        </repository>
 
57
        <repository>
 
58
                        <id>laughing-panda</id>
 
59
                        <name>Laughing Panda</name>
 
60
                        <url>http://www.laughingpanda.org/maven2/</url>
 
61
                </repository>
57
62
    </repositories>
58
63
    <build>
59
64
        <resources>
64
69
            <directory>target/generated-resources</directory>
65
70
          </resource>
66
71
        </resources>
67
 
            <!-- extensions>
68
 
            <extension>
69
 
                <groupId>org.apache.maven.wagon</groupId>
70
 
                <artifactId>wagon-webdav</artifactId>
71
 
                <version>1.0-beta-2</version>
72
 
            </extension>
73
 
        </extensions -->
74
72
        <plugins>
75
73
            <plugin>
76
74
                <artifactId>maven-surefire-plugin</artifactId>
80
78
            </plugin>
81
79
            <plugin>
82
80
                <artifactId>maven-antrun-plugin</artifactId>
83
 
                <version>1.2-SNAPSHOT</version>
 
81
                <version>1.3</version>
84
82
                <executions>
85
83
                    <execution>
86
84
                        <id>generate-resources</id>
128
126
                </executions>
129
127
                <dependencies>
130
128
                    <dependency>
131
 
                        <groupId>ant</groupId>
 
129
                        <groupId>org.apache.ant</groupId>
132
130
                        <artifactId>ant-trax</artifactId>
133
 
                        <version>1.6.5</version>
 
131
                        <version>1.7.1</version>
134
132
                    </dependency>
135
133
                    <dependency>
136
 
                        <groupId>ant</groupId>
 
134
                        <groupId>org.apache.ant</groupId>
137
135
                        <artifactId>ant-nodeps</artifactId>
138
 
                        <version>1.6.5</version>
 
136
                        <version>1.7.1</version>
139
137
                    </dependency>
140
138
                    <dependency>
141
 
                        <groupId>ant</groupId>
 
139
                        <groupId>org.apache.ant</groupId>
142
140
                        <artifactId>ant-junit</artifactId>
143
 
                        <version>1.6.5</version>
 
141
                        <version>1.7.1</version>
144
142
                    </dependency>
145
143
                    <dependency>
146
144
                        <groupId>junit</groupId>
147
145
                        <artifactId>junit</artifactId>
148
 
                        <version>3.8.1</version>
 
146
                        <version>4.4</version>
149
147
                    </dependency>
150
148
                </dependencies>
151
149
            </plugin>
243
241
            <properties>
244
242
                <slowResources>false</slowResources>
245
243
                <multiWindow>true</multiWindow>
246
 
                <browser>*firefox</browser>
 
244
                <browser>*firefoxproxy</browser>
247
245
                <seleneseSuite>TestSuite</seleneseSuite>
248
246
            </properties>
249
247
            <build>
250
248
                <plugins>
251
249
                    <plugin>
252
250
                        <artifactId>maven-antrun-plugin</artifactId>
253
 
                        <version>1.2-SNAPSHOT</version>
 
251
                        <version>1.3</version>
 
252
                        <executions>
 
253
                            <execution>
 
254
                                <id>integration-test</id>
 
255
                                <phase>integration-test</phase>
 
256
                                <configuration>
 
257
                                    <tasks>
 
258
                                        <taskdef resource="selenium-ant.properties">
 
259
                                            <classpath refid="maven.test.classpath" />
 
260
                                        </taskdef>
 
261
                                        <echo>Shutting down any existing Remote Control...</echo>
 
262
                                        <get src="http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer" dest="shutdown.log" ignoreerrors="true"/>
 
263
                                        <selenese 
 
264
                                            browser="${browser}"
 
265
                                            suite="src/main/resources/tests/${seleneseSuite}.html"
 
266
                                            port="4444"
 
267
                                            slowResources="${slowResources}"
 
268
                                            multiWindow="${multiWindow}"
 
269
                                            startURL="http://localhost:4444/selenium-server/tests/" />
 
270
                                    </tasks>
 
271
                                </configuration>
 
272
                                <goals>
 
273
                                    <goal>run</goal>
 
274
                                </goals>
 
275
                            </execution>
 
276
                        </executions>
 
277
                        <dependencies>
 
278
                            <dependency>
 
279
                                <groupId>org.apache.ant</groupId>
 
280
                                <artifactId>ant-trax</artifactId>
 
281
                                <version>1.7.1</version>
 
282
                            </dependency>
 
283
                            <dependency>
 
284
                                <groupId>org.apache.ant</groupId>
 
285
                                <artifactId>ant-junit</artifactId>
 
286
                                <version>1.7.1</version>
 
287
                            </dependency>
 
288
                            <dependency>
 
289
                                <groupId>junit</groupId>
 
290
                                <artifactId>junit</artifactId>
 
291
                                <version>4.4</version>
 
292
                            </dependency>
 
293
                        </dependencies>
 
294
                    </plugin>
 
295
                </plugins>
 
296
            </build>
 
297
        </profile>
 
298
        
 
299
        <profile>
 
300
            <id>integration-test-iexplore</id>
 
301
            <activation>
 
302
                <!-- Reqire manual activation of this profile with -Pintegration-test-firefox
 
303
                <property>
 
304
                    <name>!skipTests</name>
 
305
                </property>-->
 
306
            </activation>
 
307
            <properties>
 
308
                <slowResources>false</slowResources>
 
309
                <multiWindow>true</multiWindow>
 
310
                <browser>*iexplore</browser>
 
311
                <seleneseSuite>TestSuite-InternetExplorer</seleneseSuite>
 
312
            </properties>
 
313
            <build>
 
314
                <plugins>
 
315
                    <plugin>
 
316
                        <artifactId>maven-antrun-plugin</artifactId>
 
317
                        <version>1.3</version>
254
318
                        <executions>
255
319
                            <execution>
256
320
                                <id>integration-test</id>
276
340
                        </executions>
277
341
                        <dependencies>
278
342
                            <dependency>
279
 
                                <groupId>ant</groupId>
 
343
                                <groupId>org.apache.ant</groupId>
280
344
                                <artifactId>ant-trax</artifactId>
281
 
                                <version>1.6.5</version>
 
345
                                <version>1.7.1</version>
282
346
                            </dependency>
283
347
                            <dependency>
284
 
                                <groupId>ant</groupId>
 
348
                                <groupId>org.apache.ant</groupId>
285
349
                                <artifactId>ant-junit</artifactId>
286
 
                                <version>1.6.5</version>
 
350
                                <version>1.7.1</version>
287
351
                            </dependency>
288
352
                            <dependency>
289
353
                                <groupId>junit</groupId>
290
354
                                <artifactId>junit</artifactId>
291
 
                                <version>3.8.1</version>
 
355
                                <version>4.4</version>
292
356
                            </dependency>
293
 
                            <!-- DGF commenting out Andras' change 2264/2265, fixing Hudson build
294
 
                            <dependency>
295
 
                                                                <groupId>jetty</groupId>
296
 
                                                                <artifactId>org.mortbay.jetty</artifactId>
297
 
                                                                <version>5.1.10</version>
298
 
                                                        </dependency>
299
 
                                                        -->
300
357
                        </dependencies>
301
358
                    </plugin>
302
359
                </plugins>
303
360
            </build>
304
361
        </profile>
 
362
        
305
363
    </profiles>
306
364
    <pluginRepositories>
307
365
        <pluginRepository>
330
388
        </snapshotRepository>
331
389
    </distributionManagement>
332
390
    <scm>
333
 
        <connection>scm:svn:http://svn.seleniumhq.org/svn/selenium-core/trunk</connection>
334
 
        <developerConnection>scm:svn:https://svn.seleniumhq.org/svn/selenium-core/trunk</developerConnection>
335
 
        <url>http://svn.seleniumhq.org/svn/selenium-core/trunk</url>
 
391
        <connection>scm:svn:http://svn.openqa.org/svn/selenium-core/trunk</connection>
 
392
        <developerConnection>scm:svn:https://svn.openqa.org/svn/selenium-core/trunk</developerConnection>
 
393
        <url>http://svn.openqa.org/svn/selenium-core/trunk</url>
336
394
    </scm>
337
395
    <dependencies>
338
396
        <dependency>
339
397
            <groupId>org.seleniumhq.selenium.server</groupId>
340
398
            <artifactId>selenium-server-coreless</artifactId>
341
 
            <version>1.0-SNAPSHOT</version>
 
399
            <version>1.0.1</version>
342
400
            <scope>test</scope>
343
401
        </dependency>
344
402
        <dependency>
345
403
            <groupId>rhino</groupId>
346
404
            <artifactId>js</artifactId>
347
 
            <version>1.6R5</version>
 
405
            <version>1.7R1</version>
348
406
            <scope>test</scope>
349
407
        </dependency>
350
408
        <dependency>
351
409
            <groupId>junit</groupId>
352
410
            <artifactId>junit</artifactId>
353
 
            <version>3.8.1</version>
 
411
            <version>4.4</version>
354
412
            <scope>test</scope>
355
413
        </dependency>
356
414
    </dependencies>