All Downloads are FREE. Search and download functionalities are using the official Maven repository.

evosuite-runtime.1.0.4-alpha2.source-code.pom.xml Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
<?xml version="1.0" encoding="ISO-8859-1"?>
<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>

    <parent>
        <groupId>org.evosuite</groupId>
        <artifactId>evosuite</artifactId>
        <version>1.0.4-alpha2</version>
    </parent>

    <artifactId>evosuite-runtime</artifactId>
    <packaging>jar</packaging>

    <!-- "runtime" is what is going to be linked in the user's applications.
        As such, it should have no reference to any other EvoSuite module, and we
        should try to keep the number of external dependencies to a minimum -->

    <dependencies>

        <!-- test dependencies  -->

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <!-- some code depends on JUnit, but it should not
            		be part of the distribution: ie users should use
            		their own version, as long as it is not too old
            -->
            <scope>provided</scope>
        </dependency>

        <dependency>
            <!-- Only needed for listener used in Ant when running tests -->
            <groupId>org.apache.ant</groupId>
            <artifactId>ant-junit</artifactId>
            <scope>provided</scope>
        </dependency>


        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <scope>test</scope>
            <!-- shouldn't end up in final jar-->
        </dependency>


        <!-- Note: those have to be part of the distribution. -->

        <dependency>
            <!-- same comments as JUnit -->
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.jboss.spec.javax.servlet</groupId>
            <artifactId>jboss-servlet-api_3.1_spec</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>javax.ejb</groupId>
            <artifactId>javax.ejb-api</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>javax.faces-api</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>javax.ws.rs</groupId>
            <artifactId>jsr311-api</artifactId>
            <scope>compile</scope>
        </dependency>


        <dependency>
            <groupId>javax.enterprise</groupId>
            <artifactId>cdi-api</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <scope>compile</scope>
        </dependency>

        <!-- ////////////////////////////////// -->

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>     
        <dependency>
            <groupId>com.sun</groupId>
            <artifactId>tools</artifactId>
        </dependency>
        <dependency>
            <groupId>org.ow2.asm</groupId>
            <artifactId>asm-all</artifactId>
        </dependency>

    </dependencies>

</project>
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy