Download ninja-test-utilities-5.3.0.jar file

Introduction

You can download ninja-test-utilities-5.3.0.jar in this page.

License

Apache License

Type List

ninja-test-utilities-5.3.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.ninjaframework/ninja-test-utilities/pom.properties
META-INF/maven/org.ninjaframework/ninja-test-utilities/pom.xml
ninja.NinjaApiDocTest.class
ninja.NinjaDaoTestBase.class
ninja.NinjaDocTester.class
ninja.NinjaFluentLeniumTest.class
ninja.NinjaRouterTest.class
ninja.NinjaRunner.class
ninja.NinjaTest.class
ninja.utils.FakeContext.class
ninja.utils.MockNinjaProperties.class
ninja.utils.NinjaTestBrowser.class
ninja.utils.NinjaTestServer.class

Pom

ninja-test-utilities-5.3.0.pom file content.

<!--

    Copyright (C) 2012-2016 the original author or authors.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <artifactId>ninja-test-utilities</artifactId>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.ninjaframework</groupId>
        <artifactId>ninja</artifactId>
        <version>5.3.0</version>
    </parent>
    
    <url>http://www.ninjaframework.org</url>

    <dependencies>
        
        <!-- ninja-core is needed so that correct dependencies are on classpath.  -->
        <!-- with ninja-standalone alone it is one level too deep and other dependencies -->
        <!-- get higher priority. -->
        <dependency>
            <groupId>org.ninjaframework</groupId>
            <artifactId>ninja-core</artifactId>
            <scope>compile</scope>
        </dependency>
        
        <dependency>
            <groupId>org.ninjaframework</groupId>
            <artifactId>ninja-standalone</artifactId>
            <scope>compile</scope>
        </dependency>

        <!-- Testing is mainly done by mockito: -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>compile</scope>
        </dependency>

        <!-- A very nice abstraction for making selenum tests: -->
        <dependency>
            <groupId>org.fluentlenium</groupId>
            <artifactId>fluentlenium-core</artifactId>
            <scope>compile</scope>
        </dependency>
        
        <!--HttpCient is used to mainly test low level Json Apis -->
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpmime</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.doctester</groupId>
            <artifactId>doctester-core</artifactId>
            <scope>compile</scope>
        </dependency>
        
        <!-- devbliss doctester should be removed at some point 
             - superseeded by docterster.org -->
        <dependency>
            <groupId>com.devbliss.doctest</groupId>
            <artifactId>doctest</artifactId>
            <scope>compile</scope>
            <exclusions>
                <exclusion>
                    <artifactId>freemarker</artifactId>
                    <groupId>org.freemarker</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>mockito-all</artifactId>
                    <groupId>org.mockito</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>junit-dep</artifactId>
                    <groupId>junit</groupId>
                </exclusion>
            </exclusions>
        </dependency>



    </dependencies>
    
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.ninjaframework</groupId>
   <artifactId>ninja-test-utilities</artifactId>
   <version>5.3.0</version>
</dependency>

Download

If you think the following ninja-test-utilities-5.3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download ninja-test-utilities-5.3.0.jar file




PreviousNext

Related