javaquery/canvas/pom.xml
author Anton Epple <toni.epple@eppleton.de>
Wed, 22 May 2013 12:10:54 +0200
branchcanvas
changeset 1127 39b095abcc68
parent 1124 4613a6fe2862
child 1159 aa00b27aeb75
permissions -rw-r--r--
removed dependency
toni@1107
     1
<?xml version="1.0" encoding="UTF-8"?>
toni@1107
     2
<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">
toni@1107
     3
    <modelVersion>4.0.0</modelVersion>
toni@1107
     4
    <parent>
toni@1107
     5
        <artifactId>javaquery</artifactId>
toni@1107
     6
        <groupId>org.apidesign.bck2brwsr</groupId>
toni@1107
     7
        <version>0.8-SNAPSHOT</version>
toni@1107
     8
    </parent>
toni@1107
     9
  
toni@1107
    10
    <groupId>net.java.html</groupId>
toni@1107
    11
    <artifactId>canvas</artifactId>
toni@1107
    12
    <version>0.8-SNAPSHOT</version>
toni@1124
    13
    <packaging>jar</packaging>
toni@1107
    14
    <name>canvas</name>
toni@1107
    15
    <url>http://maven.apache.org</url>
toni@1107
    16
    <build>
toni@1107
    17
        <plugins>
toni@1107
    18
            <plugin>
toni@1107
    19
                <groupId>org.apache.maven.plugins</groupId>
toni@1107
    20
                <artifactId>maven-compiler-plugin</artifactId>
toni@1107
    21
                <version>2.3.2</version>
toni@1107
    22
                <configuration>
toni@1107
    23
                    <source>1.7</source>
toni@1107
    24
                    <target>1.7</target>
toni@1107
    25
                </configuration>
toni@1107
    26
            </plugin>
toni@1107
    27
            <plugin>
toni@1107
    28
                <groupId>org.apache.maven.plugins</groupId>
toni@1107
    29
                <artifactId>maven-javadoc-plugin</artifactId>
toni@1107
    30
                <configuration>
toni@1107
    31
                    <subpackages>net.java.html.canvas</subpackages>
toni@1107
    32
                    <skip>false</skip>
toni@1107
    33
                </configuration>
toni@1107
    34
            </plugin>
toni@1107
    35
        </plugins>
toni@1107
    36
    </build>
toni@1107
    37
    <properties>
toni@1107
    38
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
toni@1107
    39
    </properties>
toni@1107
    40
    <dependencies>
toni@1107
    41
        <dependency>
toni@1107
    42
            <groupId>org.testng</groupId>
toni@1107
    43
            <artifactId>testng</artifactId>
toni@1107
    44
            <scope>test</scope>
toni@1107
    45
            <exclusions>
toni@1107
    46
                <exclusion>
toni@1107
    47
                    <artifactId>junit</artifactId>
toni@1107
    48
                    <groupId>junit</groupId>
toni@1107
    49
                </exclusion>
toni@1107
    50
            </exclusions>
toni@1107
    51
        </dependency>
toni@1107
    52
        <dependency>
toni@1107
    53
            <groupId>org.netbeans.api</groupId>
toni@1107
    54
            <artifactId>org-openide-util-lookup</artifactId>
toni@1107
    55
            <scope>provided</scope>
toni@1107
    56
        </dependency>
toni@1124
    57
        <dependency>
toni@1124
    58
            <groupId>org.apidesign.bck2brwsr</groupId>
toni@1124
    59
            <artifactId>vm4brwsr</artifactId>
toni@1124
    60
            <version>${project.version}</version>
toni@1124
    61
            <type>jar</type>
toni@1124
    62
            <scope>test</scope>
toni@1124
    63
        </dependency>
toni@1124
    64
        <dependency>
toni@1124
    65
            <groupId>org.apidesign.bck2brwsr</groupId>
toni@1124
    66
            <artifactId>vmtest</artifactId>
toni@1124
    67
            <version>${project.version}</version>
toni@1124
    68
            <scope>test</scope>
toni@1124
    69
        </dependency>
toni@1124
    70
        <dependency>
toni@1124
    71
            <groupId>org.apidesign.bck2brwsr</groupId>
toni@1124
    72
            <artifactId>launcher.http</artifactId>
toni@1124
    73
            <version>${project.version}</version>
toni@1124
    74
            <scope>test</scope>
toni@1124
    75
        </dependency>    
toni@1107
    76
    </dependencies>
toni@1107
    77
</project>