view services/jcmd/pom.xml @ 280:262f254b0ac0

Sshared jar files reduce footprint from 120mb to 14 mb This patch shares most of the jar files instead of maintaining separate copies in each war file. The saving is 80MB on disk, and 10-30 MB in memory. before dist/target/image 120 mb image/services 82 mb image/libs 14 mb 140-160 mb serving jvms/0.0.1/tree after dist/target/image 16 mb image/services 1.71 mb image/libs 14 mb 110-140 mb serving jvms/0.0.1/tree
author Simon Tooke <stooke@redhat.com>
date Tue, 17 Oct 2017 08:49:58 -0400
parents ec644f678e6e
children bf5be7d61823
line wrap: on
line source

<!--

 Copyright 2012-2017 Red Hat, Inc.

 This file is part of Thermostat.

 Thermostat is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published
 by the Free Software Foundation; either version 2, or (at your
 option) any later version.

 Thermostat is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with Thermostat; see the file COPYING.  If not see
 <http://www.gnu.org/licenses/>.

 Linking this code with other modules is making a combined work
 based on this code.  Thus, the terms and conditions of the GNU
 General Public License cover the whole combination.

 As a special exception, the copyright holders of this code give
 you permission to link this code with independent modules to
 produce an executable, regardless of the license terms of these
 independent modules, and to copy and distribute the resulting
 executable under terms of your choice, provided that you also
 meet, for each linked independent module, the terms and conditions
 of the license of that module.  An independent module is a module
 which is not derived from or based on this code.  If you modify
 this code, you may extend this exception to your version of the
 library, but you are not obligated to do so.  If you do not wish
 to do so, delete this exception statement from your version.

-->
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <artifactId>thermostat-web-gateway-services</artifactId>
    <groupId>com.redhat.thermostat</groupId>
    <version>1.99.12-SNAPSHOT</version>
  </parent>

  <artifactId>thermostat-web-gateway-service-jcmd</artifactId>

  <packaging>war</packaging>

  <name>Thermostat Web Gateway JCMD Service</name>
  
  <properties>
    <com.redhat.thermostat.gateway.SERVICE_NAME>jcmd</com.redhat.thermostat.gateway.SERVICE_NAME>
  </properties>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
          <configuration>
          <webResources>
            <resource>
              <directory>src/main/webapp</directory>
              <filtering>true</filtering>
            </resource>
          </webResources>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <!-- Thermostat Web Gateway Dependencies -->
    <dependency>
      <groupId>com.redhat.thermostat</groupId>
      <artifactId>thermostat-web-gateway-common-mongodb</artifactId>
      <version>${project.version}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.redhat.thermostat</groupId>
      <artifactId>thermostat-web-gateway-common-core</artifactId>
      <version>${project.version}</version>
      <scope>provided</scope>
    </dependency>

    <!-- Servlet API deps -->
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>${javax.servlet.version}</version>
      <scope>provided</scope>
    </dependency>

    <!-- JAX-RS Dependencies -->
    <dependency>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
      <version>${javax-rs-api.version}</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>com.redhat.thermostat</groupId>
      <artifactId>thermostat-common</artifactId>
      <version>${thermostat.common.version}</version>
    </dependency>

    <!-- test scoped deps -->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${junit.version}</version>
        <scope>test</scope>
    </dependency>

  </dependencies>
</project>