0

私はMavenと依存関係の世界が初めてです。だから私は0.10.2から0.10.9への私のflulentleniumバージョンを変更しています

テストスイートの pom.xml

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
    <dependency>
        <groupId>org.fluentlenium</groupId>
        <artifactId>fluentlenium-core</artifactId>
        <version>0.10.9</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-all</artifactId>
        <version>1.3</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.glassfish</groupId>
        <artifactId>javax.json</artifactId>
        <version>1.0.4</version>
        <scope>test</scope>
    </dependency>
</dependencies>

私がmavenリポジトリを見たとき http://mvnrepository.com/artifact/org.fluentlenium/fluentlenium-core/0.10.9

コンパイルの依存関係として selenium 2.48.2 を使用しているようです。しかし、プロジェクトの外部ライブラリをチェックインすると、まだ古い (0.10.2) バージョン用の 2.41 selenuium が表示されます。

では、selenium 2.48.2 を手動でダウンロードする必要がありますか?それとも、インストール時に fluentlenium がすべての依存関係をダウンロードする必要がありますか?

事前にご協力いただきありがとうございます。

4

0 に答える 0