CIMDifference
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ch.ninecode.cim</groupId>
<artifactId>CIMDifference</artifactId>
<version>2.12-3.0.1-5.1.1</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>CIMSpark</artifactId>
<groupId>ch.ninecode.cim</groupId>
<version>2.12-3.0.1-5.1.1</version>
</parent>
<artifactId>CIMDifference</artifactId>
<name>${project.artifactId}</name>
<description>Compare CIM files and output differences</description>
<inceptionYear>2020</inceptionYear>
<url>https://github.com/derrickoswald/CIMSpark/tree/master/CIMDifference</url>
<organization>
<name>9code GmbH</name>
<url>http://9code.ch</url>
</organization>
<scm>
<url>git@github.com:derrickoswald/CIMSpark.git</url>
<connection>scm:git:git@github.com:derrickoswald/CIMSpark.git</connection>
<developerConnection>scm:git:git@github.com:derrickoswald/CIMSpark.git</developerConnection>
</scm>
<issueManagement>
<url>https://github.com/derrickoswald/CIMSpark/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<comments>see https://github.com/derrickoswald/CIMSpark/blob/master/LICENSE.md</comments>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Derrick Oswald</name>
<email>derrick.oswald@9code.ch</email>
<id>derrickoswald</id>
<organization>9code GmbH</organization>
<organizationUrl>http://9code.ch/</organizationUrl>
<timezone>1</timezone>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<properties>
<keybase>https://keybase.io/derrickoswald</keybase>
<picUrl>https://secure.gravatar.com/avatar/d659afe3730a534914c5555640d326b3</picUrl>
</properties>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.github.scopt</groupId>
<artifactId>scopt_${version.dependency.scala}</artifactId>
<version>${version.dependency.scopt}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.ninecode.cim</groupId>
<artifactId>CIMReader</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${version.dependency.scalalibrary}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>${version.dependency.scalalibrary}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_${version.dependency.scala}</artifactId>
<version>${version.dependency.spark}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_${version.dependency.scala}</artifactId>
<version>${version.dependency.spark}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${version.dependency.scala}</artifactId>
<version>${version.dependency.scalatest}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.dependency.junit}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>${basedir}/src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<!-- disable surefire -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.dependency.maven-surefire-plugin}</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<!-- enable scalatest -->
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>${version.dependency.scalatest-maven-plugin}</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>CIMDifferenceSuite.txt</filereports>
<suites>ch.ninecode.cim.CIMDifferenceSuite</suites>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${version.dependency.maven-failsafe-plugin}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- assembly for stand-alone program -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${version.dependency.maven-assembly-plugin}</version>
<executions>
<execution>
<id>make-CIMDifference-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>CIMDifference-${project.version}</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>ch.ninecode.cim.CIMDifference</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<!-- source jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.dependency.maven-source-plugin}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- signing artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.dependency.maven-gpg-plugin}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>
<!-- deploy artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${version.dependency.maven-deploy-plugin}</version>
</plugin>
</plugins>
</build>
</project>