<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">
  <modelVersion>4.0.0</modelVersion>
  <artifactId>vaadin-shared-deps</artifactId>
    <packaging>bundle</packaging>
  <parent>
    <groupId>de.mhus.ports</groupId>
    <version>7.2.0</version>
    <artifactId>mhus-ports</artifactId>
  </parent>

  <properties>
      <bndlib.version>1.50.0</bndlib.version>
        <felix.metatype.version>1.0.10</felix.metatype.version>
		<compileSource>1.7</compileSource>
		<osgi.version>5.0.0</osgi.version>
        <bundle.plugin.version>2.5.3</bundle.plugin.version>

        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		
  </properties>
    
  
    <build>
        <plugins>
    <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
	    <artifactId>maven-compiler-plugin</artifactId>
	    <version>2.0.2</version>
	    <configuration>
    	    <source>1.7</source>
        	<target>1.7</target>
    	</configuration>
	  </plugin>  
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>${bundle.plugin.version}</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>com.google.gwt.thirdparty.guava</Bundle-SymbolicName>
                        <Bundle-Version>16.0.1.vaadin1</Bundle-Version>
                        <Export-Package>
                        org.json.*;version=${project.version},
                        com.google.gwt.thirdparty.guava*;version=16.0.1.vaadin1,
                        com.google.gwt.thirdparty.streamhtmlparser*;version=0.0.10.vaadin1,
                        javax.inject.*;version=${project.version},
                        org.w3c.flute.*;version=1.3.0.gg2,
                        org.w3c.css.sac.*;version=${project.version}
                        </Export-Package>
                        <Import-Package>*</Import-Package>
						<Embed-Dependency>javax.inject,sac</Embed-Dependency>
                    </instructions>
                </configuration>
            </plugin>
	</plugins>  
</build>

<dependencies>
<dependency>
    <groupId>com.google.code.findbugs</groupId>
    <artifactId>jsr305</artifactId>
    <version>3.0.0</version>
</dependency>
<dependency>
  <groupId>javax.inject</groupId>
  <artifactId>javax.inject</artifactId>
  <version>1</version>
</dependency>
<dependency>
	<groupId>org.w3c.css</groupId>
	<artifactId>sac</artifactId>
	<version>1.3</version>
</dependency>
</dependencies>
</project>