view pom.xml @ 0:8faa914b76a4

Initial import.
author Mario Torre <neugens.limasoftware@gmail.com>
date Tue, 11 Dec 2012 20:01:55 +0100
parents
children c1d20b4096aa
line wrap: on
line source

<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>
  
  <name>Dolphin Look And Feel</name>
  <url>http://icedtea.classpath.org/dolphin</url>

  <groupId>com.redhat.laf</groupId>
  <artifactId>dolphin</artifactId>
  <version>0.5.1-SNAPSHOT</version>
  <packaging>bundle</packaging>
    
  <properties>
    <java.dir>/usr/share/java</java.dir>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
      
  <build>
    
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>false</filtering>
      </resource>
    </resources>
    
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>

            <configuration>
                <source>1.7</source>
                <target>1.7</target>
                <compilerArgument>-XDignore.symbol.file=true</compilerArgument>
            </configuration>
        </plugin>
    
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <version>1.4.0</version>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>com.redhat.laf.dolphin</Bundle-SymbolicName>
            <Bundle-Vendor>Red Hat, Inc.</Bundle-Vendor>
            <Export-Package>
              com.redhat.swing.laf.dolphin,
              com.redhat.swing.laf.dolphin.borders,
              com.redhat.swing.laf.dolphin.button,
              com.redhat.swing.laf.dolphin.icons,
              com.redhat.swing.laf.dolphin.menu,
              com.redhat.swing.laf.dolphin.scrollbars,
              com.redhat.swing.laf.dolphin.split,
              com.redhat.swing.laf.dolphin.tab,
              com.redhat.swing.laf.dolphin.text,
              com.redhat.swing.laf.dolphin.themes,
              com.redhat.swing.laf.dolphin.table,
              com.redhat.swing.laf.dolphin.tree,
            </Export-Package>
            <Private-Package>
              com.redhat.swing.laf.dolphin.showcase,
              com.redhat.swing.laf.dolphin.showcase.table,
              com.redhat.swing.laf.dolphin.showcase.tree,
            </Private-Package>
            <!-- Do not autogenerate uses clauses in Manifests -->
            <_nouses>true</_nouses>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>

<!--
  <scm>
    <connection>scm:hg:http://icedtea.classpath.org/hg/dolphin</connection>
    <developerConnection>scm:hg:ssh://icedtea.classpath.org/hg/dolphin</developerConnection>
    <tag>tip</tag>
    <url>http://icedtea.classpath.org/hg/dolphin</url>
  </scm>
-->
</project>