Skip to content
Snippets Groups Projects
Select Git revision
  • 56a8f5e26ef55c9a3b342bfc330e6000c9c15528
  • 3.6.13 default
  • revert-08faff75
  • 3.10.8
4 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 1.90 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    <project
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
      xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.cdma.plugin</groupId>
        <artifactId>plugins</artifactId>
        <version>3.7.6</version>
      </parent>
    
      <artifactId>archiving-soleil</artifactId>
      <name>CDMA Archiving Soleil Plug-in</name>
      <description>This project is Soleil's Archiving plugin for the CDMA.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>utilities</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma.engine</groupId>
          <artifactId>archiving</artifactId>
        </dependency>
        <dependency>
          <groupId>com.oracle</groupId>
          <artifactId>ojdbc6</artifactId>
        </dependency>
      </dependencies>
    
      <build>
        <sourceDirectory>src/main/java</sourceDirectory>
        <resources>
          <resource>
            <targetPath>META-INF</targetPath>
            <directory>META-INF</directory>
          </resource>
          <resource>
            <targetPath>OSGI-INF</targetPath>
            <directory>OSGI-INF</directory>
          </resource>
        </resources>
        <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>
    </project>