json/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 04 Nov 2013 13:03:58 +0100
changeset 314 3461e5ec9059
parent 306 10bae0c421ef
child 322 4a93f2679691
permissions -rw-r--r--
Converted my JARs into OSGi bundles
     1 <?xml version="1.0"?>
     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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5     <groupId>org.apidesign</groupId>
     6     <artifactId>html</artifactId>
     7     <version>0.7-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.html</groupId>
    10   <artifactId>net.java.html.json</artifactId>
    11   <version>0.7-SNAPSHOT</version>
    12   <packaging>bundle</packaging>
    13   <name>JSON Model in Java</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     <publicPackages>net.java.html.json</publicPackages>
    18   </properties>
    19   <build>
    20       <plugins>
    21           <plugin>
    22               <groupId>org.apache.felix</groupId>
    23               <artifactId>maven-bundle-plugin</artifactId>
    24           </plugin>
    25           <plugin>
    26               <groupId>org.apache.maven.plugins</groupId>
    27               <artifactId>maven-source-plugin</artifactId>
    28               <version>2.2.1</version>
    29               <executions>
    30                   <execution>
    31                       <id>prepare-sources</id>
    32                       <goals>
    33                           <goal>jar</goal>
    34                       </goals>
    35                       <phase>package</phase>
    36                   </execution>
    37               </executions>
    38           </plugin>
    39       </plugins>
    40   </build>
    41   <dependencies>
    42     <dependency>
    43       <groupId>org.testng</groupId>
    44       <artifactId>testng</artifactId>
    45       <scope>test</scope>
    46     </dependency>
    47     <dependency>
    48       <groupId>org.netbeans.api</groupId>
    49       <artifactId>org-openide-util-lookup</artifactId>
    50       <scope>provided</scope>
    51     </dependency>
    52     <dependency>
    53       <groupId>${project.groupId}</groupId>
    54       <artifactId>net.java.html</artifactId>
    55       <version>${project.version}</version>
    56     </dependency>
    57   </dependencies>
    58     <description>API for smooth representation of JSON objects in Java. Write your
    59 application in Java and
    60 present it using modern HTML rendering technologies like 
    61 Knockout.
    62 </description>
    63 </project>