sound/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 07 Aug 2013 15:29:42 +0200
branchsound
changeset 223 ef2399c0fb9e
parent 106 877f18756b74
child 264 6656cca0a73a
permissions -rw-r--r--
Implementation of the AudioClip that uses HTML5 Audio tag
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4     <modelVersion>4.0.0</modelVersion>
     5     <parent>
     6         <groupId>org.apidesign</groupId>
     7         <artifactId>html</artifactId>
     8         <version>0.5-SNAPSHOT</version>
     9     </parent>
    10     <groupId>org.apidesign.html</groupId>
    11     <artifactId>net.java.html.sound</artifactId>
    12     <version>0.5-SNAPSHOT</version>
    13     <name>Sound API via HTML</name>
    14     <url>http://maven.apache.org</url>
    15     <properties>
    16         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     </properties>
    18     <build>
    19         <plugins>
    20             <plugin>
    21                 <groupId>org.apache.maven.plugins</groupId>
    22                 <artifactId>maven-javadoc-plugin</artifactId>
    23                 <configuration>
    24                     <skip>false</skip>
    25                     <subpackages>net.java.html.sound</subpackages>
    26                 </configuration>
    27             </plugin>
    28         </plugins>
    29     </build>
    30     <dependencies>
    31         <dependency>
    32             <groupId>org.testng</groupId>
    33             <artifactId>testng</artifactId>
    34             <scope>test</scope>
    35         </dependency>
    36         <dependency>
    37             <groupId>org.apidesign.html</groupId>
    38             <artifactId>net.java.html.boot</artifactId>
    39             <version>0.5-SNAPSHOT</version>
    40             <type>jar</type>
    41         </dependency>
    42         <dependency>
    43           <groupId>org.netbeans.api</groupId>
    44           <artifactId>org-openide-util-lookup</artifactId>
    45           <scope>provided</scope>
    46         </dependency>
    47     </dependencies>
    48 </project>