Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • cea
  • databrowser-split
  • v1.3.12
  • v1.3.11
  • v1.3.10
  • v1.3.9
  • v1.3.8
  • v1.3.7
  • v1.3.6
  • v1.3.1-7920
  • v1.3.0-7615
  • v1.3.0-7521
  • v1.2.0-6800
  • databrowser-1.3.5
  • databrowser-1.3.4
  • databrowser-1.3.3
  • DataBrowser-1.3.2
  • databrowser-1.3.1
  • trunk
  • DataBrowser-before-separation
  • DataBrowser-1.2.1
  • DataBrowser-1.1.10
23 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 1.37 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    <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>
        <groupId>org.cdma</groupId>
        <artifactId>cdma</artifactId>
        <version>3.7.6</version>
      </parent>
    
      <packaging>pom</packaging>
    
      <groupId>org.cdma.engine</groupId>
      <artifactId>engines</artifactId>
      <name>CDMA Engines</name>
      <description>This module contains CDMA engines sub modules</description>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <configuration>
              <encoding>${project.build.sourceEncoding}</encoding>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <encoding>${project.build.sourceEncoding}</encoding>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
      <modules>
        <module>xml</module>
        <module>sql</module>
        <module>hdf</module>
        <module>hdf-swmr</module>
        <module>netcdf</module>
        <module>archiving</module>
      </modules>
    
    </project>