json/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 23 Apr 2013 20:43:19 +0200
changeset 32 4ed2861ee92d
parent 0 be1853f59242
child 34 485f222358de
permissions -rw-r--r--
Polishing Javadoc
jtulach@0
     1
<?xml version="1.0"?>
jtulach@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"
jtulach@0
     3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
jtulach@0
     4
  <modelVersion>4.0.0</modelVersion>
jtulach@0
     5
  <parent>
jtulach@0
     6
    <groupId>org.apidesign</groupId>
jtulach@0
     7
    <artifactId>html</artifactId>
jtulach@0
     8
    <version>0.1-SNAPSHOT</version>
jtulach@0
     9
  </parent>
jtulach@0
    10
  <groupId>org.apidesign.html</groupId>
jtulach@0
    11
  <artifactId>net.java.html.json</artifactId>
jtulach@0
    12
  <version>0.1-SNAPSHOT</version>
jtulach@0
    13
  <description>JSON Model in Java</description>
jtulach@0
    14
  <url>http://maven.apache.org</url>
jtulach@0
    15
  <properties>
jtulach@0
    16
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@0
    17
  </properties>
jaroslav@32
    18
  <build>
jaroslav@32
    19
      <plugins>
jaroslav@32
    20
          <plugin>
jaroslav@32
    21
              <groupId>org.apache.maven.plugins</groupId>
jaroslav@32
    22
              <artifactId>maven-javadoc-plugin</artifactId>
jaroslav@32
    23
              <configuration>
jaroslav@32
    24
                  <subpackages>net.java.html.json</subpackages>
jaroslav@32
    25
                  <skip>false</skip>
jaroslav@32
    26
              </configuration>
jaroslav@32
    27
          </plugin>
jaroslav@32
    28
      </plugins>
jaroslav@32
    29
  </build>
jtulach@0
    30
  <dependencies>
jtulach@0
    31
    <dependency>
jtulach@0
    32
      <groupId>org.testng</groupId>
jtulach@0
    33
      <artifactId>testng</artifactId>
jtulach@0
    34
      <scope>test</scope>
jtulach@0
    35
    </dependency>
jtulach@0
    36
    <dependency>
jtulach@0
    37
      <groupId>org.netbeans.api</groupId>
jtulach@0
    38
      <artifactId>org-openide-util-lookup</artifactId>
jtulach@0
    39
    </dependency>
jtulach@0
    40
  </dependencies>
jtulach@0
    41
</project>