view config/pom.xml @ 1395:2f3b449bab76

Read ssl.properties from THERMOSTAT_HOME *and* USER_THERMOSTAT_HOME. Reviewed-by: vanaltj Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2014-April/009583.html PR1744
author Severin Gehwolf <sgehwolf@redhat.com>
date Tue, 15 Apr 2014 10:36:03 +0200
parents 0cbf519e37f0
children 1cdee40fd026
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>

  <parent>
    <artifactId>thermostat</artifactId>
    <groupId>com.redhat.thermostat</groupId>
    <version>1.0.3-SNAPSHOT</version>
  </parent>
  
  <artifactId>thermostat-shared-config</artifactId>
  <packaging>bundle</packaging>
  <name>Thermostat Configuration</name>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>com.redhat.thermostat.configuration</Bundle-SymbolicName>
            <Bundle-Vendor>Red Hat, Inc.</Bundle-Vendor>
            <Bundle-Activator>com.redhat.thermostat.shared.config.internal.Activator</Bundle-Activator>
            <Export-Package>
              com.redhat.thermostat.shared.locale,
              com.redhat.thermostat.shared.config,
            </Export-Package>
            <Private-Package>
              com.redhat.thermostat.shared.config.internal,
              com.redhat.thermostat.shared.locale.internal,
            </Private-Package>
            <!-- Do not autogenerate uses clauses in Manifests -->
            <_nouses>true</_nouses>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.compendium</artifactId>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>com.redhat.thermostat</groupId>
      <artifactId>thermostat-annotations</artifactId>
      <version>${project.version}</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.redhat.thermostat</groupId>
      <artifactId>thermostat-common-test</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>