rt/flow/pom.xml
branchflow
changeset 1812 4fef6b767f61
child 1818 21089a85f02b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/flow/pom.xml	Wed Mar 11 18:58:39 2015 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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/xsd/maven-4.0.0.xsd">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.apidesign.bck2brwsr</groupId>
     1.9 +        <artifactId>rt</artifactId>
    1.10 +        <version>1.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <artifactId>flow</artifactId>
    1.13 +    <name>Graal Flow Analyzer</name>
    1.14 +    <packaging>jar</packaging>
    1.15 +    <dependencies>
    1.16 +        <dependency>
    1.17 +            <groupId>org.testng</groupId>
    1.18 +            <artifactId>testng</artifactId>
    1.19 +            <scope>test</scope>
    1.20 +        </dependency>
    1.21 +        <!--
    1.22 +        <dependency>
    1.23 +            <groupId>com.oracle.graal</groupId>
    1.24 +            <artifactId>tag</artifactId>
    1.25 +            <version>0.6-SNAPSHOT</version>
    1.26 +        </dependency>
    1.27 +        -->
    1.28 +        <dependency>
    1.29 +            <groupId>${project.groupId}</groupId>
    1.30 +            <artifactId>vm4brwsr</artifactId>
    1.31 +            <version>${project.version}</version>
    1.32 +        </dependency>
    1.33 +        <dependency>
    1.34 +            <groupId>${project.groupId}</groupId>
    1.35 +            <artifactId>emul.mini</artifactId>
    1.36 +            <version>${project.version}</version>
    1.37 +            <scope>test</scope>
    1.38 +        </dependency>
    1.39 +    </dependencies>
    1.40 +</project>
    1.41 \ No newline at end of file