forked from pikajude/selenium-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
selenium-server.cabal
37 lines (35 loc) · 1.31 KB
/
selenium-server.cabal
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
name: selenium-server
version: 0.1.0.0
synopsis: Run the selenium standalone server for usage with webdriver
description: Run the selenium standalone server for usage with webdriver
homepage: https://github.com/joelteon/selenium-server.git
license: MIT
license-file: LICENSE
author: Joel Taylor
maintainer: [email protected]
category: Testing
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Test.WebDriver.Server
other-modules: Test.WebDriver.Server.Download
Test.WebDriver.Server.Poll
build-depends: base >=4.6 && <4.7
, conduit
, directory
, filepath
, http-conduit
, http-conduit-downloader
, network
, process
, random
, regex-tdfa
, utf8-string
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: main.hs
build-depends: base, hspec, selenium-server, text, webdriver >= 0.5.3.2
default-language: Haskell2010