chat/shared/pom.xml
branchNewChat
changeset 238 a0f15cb8c730
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chat/shared/pom.xml	Fri Apr 22 05:56:47 2016 +0200
     1.3 @@ -0,0 +1,45 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     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.apidesign.demo</groupId>
     1.9 +      <artifactId>chat-pom</artifactId>
    1.10 +      <version>1.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <artifactId>chat-shared</artifactId>
    1.13 +    <packaging>bundle</packaging>
    1.14 +    <name>chat Shared Client Server Data Structures</name>
    1.15 +    <dependencies>
    1.16 +        <dependency>
    1.17 +            <groupId>org.netbeans.html</groupId>
    1.18 +            <artifactId>net.java.html.json</artifactId>
    1.19 +            <version>${net.java.html.version}</version>
    1.20 +            <type>jar</type>
    1.21 +        </dependency>
    1.22 +        <dependency>
    1.23 +            <groupId>org.testng</groupId>
    1.24 +            <artifactId>testng</artifactId>
    1.25 +            <scope>test</scope>
    1.26 +        </dependency>
    1.27 +    </dependencies>
    1.28 +    <properties>
    1.29 +        <maven.compiler.source>1.7</maven.compiler.source>
    1.30 +        <maven.compiler.target>1.7</maven.compiler.target>
    1.31 +    </properties>
    1.32 +    <build>
    1.33 +        <plugins>
    1.34 +            <plugin>
    1.35 +                <groupId>org.apache.felix</groupId>
    1.36 +                <artifactId>maven-bundle-plugin</artifactId>
    1.37 +                <version>2.4.0</version>
    1.38 +                <extensions>true</extensions>
    1.39 +                <configuration>
    1.40 +                    <instructions>
    1.41 +                        <Export-Package>org.apidesign.demo.chat.shared</Export-Package>
    1.42 +                        <Bundle-SymbolicName>org.apidesign.demo.chat.shared</Bundle-SymbolicName>
    1.43 +                    </instructions>
    1.44 +                </configuration>                
    1.45 +            </plugin>
    1.46 +        </plugins>
    1.47 +    </build>
    1.48 +</project>
    1.49 \ No newline at end of file