Project

General

Profile

Download (4.34 KB) Statistics
| Branch: | Tag: | Revision:
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/xsd/maven-4.0.0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4

    
5
  <groupId>eu.etaxonomy</groupId>
6
  <artifactId>dataportal-selenium-tests</artifactId>
7
  <version>1.0-SNAPSHOT</version>
8
  <packaging>jar</packaging>
9

    
10
  <name>dataportal-selenium-tests</name>
11
  <url>http://maven.apache.org</url>
12

    
13
  <properties>
14
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15
    <!-- for the latest version see http://docs.seleniumhq.org/download/#client-drivers -->
16
    <selenium-version>2.45.0</selenium-version>
17
  </properties>
18

    
19
  <scm>
20
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/drupal/modules/cdm_dataportal/test/java/dataportal-selenium-tests</connection>
21
    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/drupal/modules/cdm_dataportal/test/java/dataportal-selenium-tests</developerConnection>
22
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/drupal/modules/cdm_dataportal/test/java/dataportal-selenium-tests</url>
23
  </scm>
24

    
25
  <developers>
26
    <developer>
27
      <!-- your SVN account id please! -->
28
      <id>a.kohlbecker</id>
29
      <name>
30
        Andreas Kohlbecker
31
      </name>
32
      <email>a.kohlbecker [at] bgbm.org</email>
33
      <organization>
34
        Botanical Garden Botanical Museum Berlin
35
      </organization>
36
      <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
37
      <timezone>+1</timezone>
38
      <roles>
39
        <role>Developer</role>
40
      </roles>
41
      <url></url>
42
    </developer>
43
  </developers>
44

    
45
  <repositories>
46
    <repository>
47
      <id>central</id>
48
      <name>Maven Repository Switchboard</name>
49
      <layout>default</layout>
50
      <url>http://repo1.maven.org/maven2</url>
51
      <snapshots>
52
        <enabled>false</enabled>
53
      </snapshots>
54
    </repository>
55
  </repositories>
56

    
57

    
58
  <!-- **** PLUGINS **** -->
59
  <build>
60
    <plugins>
61
      <plugin>
62
        <artifactId>maven-compiler-plugin</artifactId>
63
        <version>3.2</version>
64
        <configuration>
65
          <source>1.7</source>
66
          <target>1.7</target>
67
        </configuration>
68
      </plugin>
69
      <plugin>
70
        <groupId>org.apache.maven.plugins</groupId>
71
        <artifactId>maven-eclipse-plugin</artifactId>
72
        <version>2.9</version>
73
        <configuration>
74
          <downloadSources>true</downloadSources>
75
          <downloadJavadocs>true</downloadJavadocs>
76
        </configuration>
77
      </plugin>
78
    </plugins>
79
  </build>
80

    
81
  <dependencies>
82
    <dependency>
83
      <groupId>junit</groupId>
84
      <artifactId>junit</artifactId>
85
      <version>4.6</version>
86
    </dependency>
87
    <dependency>
88
      <groupId>log4j</groupId>
89
      <artifactId>log4j</artifactId>
90
      <version>1.2.16</version>
91
    </dependency>
92
    <dependency>
93
      <groupId>commons-lang</groupId>
94
      <artifactId>commons-lang</artifactId>
95
      <version>2.2</version>
96
    </dependency>
97
    <!--
98
      selenium 2 webdriver, see
99
      http://seleniumhq.org/docs/03_webdriver.html#with-maven
100
    -->
101
    <dependency>
102
      <groupId>org.seleniumhq.selenium</groupId>
103
      <artifactId>selenium-firefox-driver</artifactId>
104
      <version>${selenium-version}</version>
105
    </dependency>
106
    <dependency>
107
      <groupId>org.seleniumhq.selenium</groupId>
108
      <artifactId>selenium-support</artifactId>
109
      <version>${selenium-version}</version>
110
    </dependency>
111
    <dependency>
112
      <groupId>org.seleniumhq.selenium</groupId>
113
      <artifactId>selenium-api</artifactId>
114
      <version>${selenium-version}</version>
115
    </dependency>
116
    <dependency>
117
      <!-- Selenese emulation -->
118
      <groupId>org.seleniumhq.selenium</groupId>
119
      <artifactId>selenium-java</artifactId>
120
      <version>${selenium-version}</version>
121
    </dependency>
122
    <dependency>
123
      <groupId>org.seleniumhq.selenium</groupId>
124
      <artifactId>selenium-chrome-driver</artifactId>
125
      <version>${selenium-version}</version>
126
    </dependency>
127
    <dependency>
128
      <groupId>org.seleniumhq.selenium</groupId>
129
      <artifactId>selenium-ie-driver</artifactId>
130
      <version>${selenium-version}</version>
131
    </dependency>
132
    <dependency>
133
      <groupId>org.seleniumhq.selenium</groupId>
134
      <artifactId>selenium-htmlunit-driver</artifactId>
135
      <version>${selenium-version}</version>
136
    </dependency>
137
  </dependencies>
138

    
139
</project>
(3-3/3)