Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • nexus_reading_bug
  • readingByBlock
  • cdma-january
  • v3.7.6
  • cdma-3.7.5
  • cdma-3.7.4
  • cdma-3.7.3
  • trunk
  • cdma-3.7.2
  • cdma-3.7.1
  • cdma-3.7.0
  • cdma-3.6.4
  • cdma-3.6.3
  • cdma-3.6.2
  • cdma-3.6.1
  • cdma-3.6.0
  • cdma-3.5.1
  • cdma-3.4.5
  • cdma-3.4.4
  • cdma-3.4.3
  • cdma-3.4.2
22 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.06 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>nexus-soleil</artifactId>
      <name>CDMA NeXus Soleil Plugin</name>
      <description>This project is Soleil's NeXus plugin for the CDMA</description>
    
      <build>
        <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>
              <showDeprecation>true</showDeprecation>
              <showWarnings>true</showWarnings>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <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>hdf-swmr</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>BasicUtilities</artifactId>
        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    </project>