json/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 19 Apr 2013 10:01:02 +0200
changeset 0 be1853f59242
child 32 4ed2861ee92d
permissions -rw-r--r--
Initial version of the JSON model APIs. Taken from bck2brwsr rev. be21afc3d48a
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>
jtulach@0
    18
  <dependencies>
jtulach@0
    19
    <dependency>
jtulach@0
    20
      <groupId>org.testng</groupId>
jtulach@0
    21
      <artifactId>testng</artifactId>
jtulach@0
    22
      <scope>test</scope>
jtulach@0
    23
    </dependency>
jtulach@0
    24
    <dependency>
jtulach@0
    25
      <groupId>org.netbeans.api</groupId>
jtulach@0
    26
      <artifactId>org-openide-util-lookup</artifactId>
jtulach@0
    27
    </dependency>
jtulach@0
    28
  </dependencies>
jtulach@0
    29
</project>