xhr4j/pom.xml
branchxhr4j
changeset 1057 b547f8f663f5
parent 992 6f1a8b251b7d
child 1059 c5223a12e761
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xhr4j/pom.xml	Mon Feb 29 05:25:31 2016 +0100
     1.3 @@ -0,0 +1,122 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<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">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <parent>
     1.8 +    <groupId>org.netbeans.html</groupId>
     1.9 +    <artifactId>pom</artifactId>
    1.10 +    <version>1.2.3</version>
    1.11 +  </parent>
    1.12 +  <groupId>org.netbeans.html</groupId>
    1.13 +  <artifactId>xhr4j</artifactId>
    1.14 +  <version>1.2.3</version>
    1.15 +  <packaging>bundle</packaging>
    1.16 +  <name>XHR via Java</name>
    1.17 +  <url>http://maven.apache.org</url>
    1.18 +    <build>
    1.19 +        <plugins>
    1.20 +            <plugin>
    1.21 +                <groupId>org.apache.felix</groupId>
    1.22 +                <artifactId>maven-bundle-plugin</artifactId>
    1.23 +            </plugin>
    1.24 +            <plugin>
    1.25 +                <groupId>org.netbeans.html</groupId>
    1.26 +                <artifactId>html4j-maven-plugin</artifactId>
    1.27 +            </plugin>
    1.28 +            <plugin>
    1.29 +                <groupId>org.apache.maven.plugins</groupId>
    1.30 +                <artifactId>maven-javadoc-plugin</artifactId>
    1.31 +                <configuration>
    1.32 +                    <skip>false</skip>
    1.33 +                </configuration>
    1.34 +            </plugin>
    1.35 +        </plugins>
    1.36 +    </build>
    1.37 +    <properties>
    1.38 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.39 +    <bundleSymbolicName>org.netbeans.html.xhr4j</bundleSymbolicName>
    1.40 +  </properties>
    1.41 +  <dependencies>
    1.42 +    <!-- compile only deps -->
    1.43 +    <dependency>
    1.44 +      <groupId>org.netbeans.api</groupId>
    1.45 +      <artifactId>org-openide-util-lookup</artifactId>
    1.46 +      <type>jar</type>
    1.47 +      <scope>provided</scope>
    1.48 +    </dependency>
    1.49 +
    1.50 +    <!-- compile + runtime -->      
    1.51 +    <dependency>
    1.52 +      <groupId>${project.groupId}</groupId>
    1.53 +      <artifactId>net.java.html</artifactId>
    1.54 +      <version>${project.version}</version>
    1.55 +      <type>jar</type>
    1.56 +    </dependency>
    1.57 +    <dependency>
    1.58 +      <groupId>${project.groupId}</groupId>
    1.59 +      <artifactId>net.java.html.json</artifactId>
    1.60 +      <version>${project.version}</version>
    1.61 +      <type>jar</type>
    1.62 +    </dependency>
    1.63 +    <!-- test only deps -->
    1.64 +    <dependency>
    1.65 +      <groupId>${project.groupId}</groupId>
    1.66 +      <artifactId>net.java.html.boot</artifactId>
    1.67 +      <version>${project.version}</version>
    1.68 +      <scope>provided</scope>
    1.69 +      <type>jar</type>
    1.70 +    </dependency>
    1.71 +    <dependency>
    1.72 +      <groupId>${project.groupId}</groupId>
    1.73 +      <artifactId>net.java.html.json.tck</artifactId>
    1.74 +      <version>${project.version}</version>
    1.75 +      <scope>test</scope>
    1.76 +      <type>jar</type>
    1.77 +    </dependency>
    1.78 +    <dependency>
    1.79 +      <groupId>${project.groupId}</groupId>
    1.80 +      <artifactId>ko4j</artifactId>
    1.81 +      <version>${project.version}</version>
    1.82 +      <scope>test</scope>
    1.83 +      <type>jar</type>
    1.84 +    </dependency>
    1.85 +    <dependency>
    1.86 +      <groupId>org.glassfish.grizzly</groupId>
    1.87 +      <artifactId>grizzly-http-server-core</artifactId>
    1.88 +      <version>${grizzly.version}</version>
    1.89 +      <scope>test</scope>
    1.90 +      <type>jar</type>
    1.91 +    </dependency>
    1.92 +    <dependency>
    1.93 +      <groupId>org.glassfish.grizzly</groupId>
    1.94 +      <artifactId>grizzly-websockets-server</artifactId>
    1.95 +      <version>${grizzly.version}</version>
    1.96 +      <scope>test</scope>
    1.97 +      <type>jar</type>
    1.98 +    </dependency>
    1.99 +    <dependency>
   1.100 +        <groupId>${project.groupId}</groupId>
   1.101 +        <artifactId>net.java.html.boot.fx</artifactId>
   1.102 +        <version>${project.version}</version>
   1.103 +        <scope>test</scope>
   1.104 +    </dependency>
   1.105 +    <dependency>
   1.106 +      <groupId>org.glassfish.grizzly</groupId>
   1.107 +      <artifactId>grizzly-http-server</artifactId>
   1.108 +      <version>${grizzly.version}</version>
   1.109 +      <scope>test</scope>
   1.110 +    </dependency>
   1.111 +    <dependency>
   1.112 +        <groupId>org.glassfish.grizzly</groupId>
   1.113 +        <artifactId>grizzly-http-servlet</artifactId>
   1.114 +        <version>${grizzly.version}</version>
   1.115 +        <scope>test</scope>
   1.116 +    </dependency>    
   1.117 +    <dependency>
   1.118 +        <groupId>javax.servlet</groupId>
   1.119 +        <artifactId>javax.servlet-api</artifactId>
   1.120 +        <scope>test</scope>
   1.121 +    </dependency>
   1.122 +  </dependencies>
   1.123 +    <description>Implementation module with support for XHR via Java.
   1.124 +Use it to workaround CORS limitations.</description>
   1.125 +</project>