javaquery/canvas/pom.xml
author Anton Epple <toni.epple@eppleton.de>
Thu, 26 Sep 2013 14:20:18 -0700
branchcanvas
changeset 1302 e67363288df1
parent 1159 aa00b27aeb75
permissions -rw-r--r--
refactoring for API review
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@1302
     7
        <version>0.9-SNAPSHOT</version>
toni@1107
     8
    </parent>
toni@1107
     9
  
toni@1107
    10
    <groupId>net.java.html</groupId>
toni@1107
    11
    <artifactId>canvas</artifactId>
toni@1302
    12
    <version>0.9-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@1159
    52
  
toni@1107
    53
    </dependencies>
toni@1107
    54
</project>