yandex-qatools / htmlelements

Html Elements is a Java framework providing easy-to-use way of interaction with web-page elements in web-page tests.
Other
271 stars 116 forks source link

Typesafe repo lack of bins #6

Closed dmakhno closed 11 years ago

dmakhno commented 11 years ago

Seems this file is missing... http://repo.typesafe.com/typesafe/repo/ru/yandex/qatools/htmlelements/htmlelements/1.8/htmlelements-1.8.jar

Only htmlelements-1.8-javadoc.jar is present.

AlexanderTolmachev commented 11 years ago

Hello, Dmytro!

As you can see, htmlelements is a multi-module project, so packaging type in root pom.xml is set to 'pom' and no .jar file will be generated. Use separate maven dependency for each module, e. g.

<dependency>
    <groupId>ru.yandex.qatools.htmlelements</groupId>
    <artifactId>htmlelements-java</artifactId>
    <version>1.8</version>
</dependency>

There was wrong maven dependency in README, sorry. I've corrected it.

dmakhno commented 11 years ago

Thanks, now it works.