emc-cellsheet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.epsilon.labs</groupId> <artifactId>emc-cellsheet</artifactId> <version>3.0.0</version> </dependency>
<?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> <groupId>org.eclipse.epsilon.labs</groupId> <artifactId>emc-cellsheet</artifactId> <version>3.0.0</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Extensions to Epsilon's Model Connectivity layer with support for managing Spreadsheet's at cell level granularity</description> <url>https://github.com/epsilonlabs/emc-cellsheet</url> <inceptionYear>2018</inceptionYear> <licenses> <license> <name>Eclipse Public License - v 2.0</name> <url>https://www.eclipse.org/legal/epl-2.0/</url> </license> </licenses> <developers> <developer> <name>Jonathan Co</name> <email>jonatha.co@york.ac.uk</email> <organization>Epsilon</organization> <organizationUrl>https://www.eclipse.org/epsilon/</organizationUrl> </developer> </developers> <modules> <module>core</module> <module>excel</module> <module>emf</module> </modules> <scm> <connection>scm:git:git@github.com:epsilonlabs/emc-cellsheet.git</connection> <developerConnection>scm:git:git@github.com:epsilonlabs/emc-cellsheet.git</developerConnection> <tag>3.0.0</tag> <url>https://github.com/epsilonlabs/emc-cellsheet</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/epsilonlabs/emc-cellsheet/issues</url> </issueManagement> <ciManagement> <system>circleci</system> <url>https://circleci.com/gh/epsilonlabs/emc-cellsheet</url> </ciManagement> <properties> <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format> <junit.version>4.12</junit.version> <guava.version>28.0-jre</guava.version> <argLine.global></argLine.global> <maven.compiler.target>${jdk.version}</maven.compiler.target> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mockito.version>2.28.2</mockito.version> <epsilon.version>1.5.1</epsilon.version> <gpg.executable>gpg</gpg.executable> <jdk.version>1.8</jdk.version> <gpg.version>1.6</gpg.version> <maven.compiler.source>${jdk.version}</maven.compiler.source> <argLine></argLine> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.epsilon</groupId> <artifactId>epsilon-core</artifactId> <version>${epsilon.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-ext</artifactId> <version>1.7.28</version> </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.poi</artifactId> <version>4.1.0_1</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.11</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.18</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.6.1</version> </dependency> <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.11.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-guava</artifactId> <version>3.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <excludes> <exclude>**/.empty</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>${project.basedir}/src/test/resources</directory> <excludes> <exclude>**/.empty</exclude> </excludes> </testResource> </testResources> <pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>4.2.0</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-Version>0.0.1.${maven.build.timestamp}</Bundle-Version> <Bundle-ClassPath>.,{maven-dependencies}</Bundle-ClassPath> <Import-Package /> <Embed-Dependency>*; scope=compile|runtime; type=!pom; groupId=!${project.groupId}</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <compilerArgs></compilerArgs> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.4</version> <configuration> <excludes> <exclude>**/tests/*</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <configuration> <skipIfEmpty>true</skipIfEmpty> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <additionalOptions>-Xdoclint:none</additionalOptions> <failOnError>false</failOnError> <quiet>true</quiet> <notimestamp>true</notimestamp> <nosince>true</nosince> <author>false</author> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <argLine>@{argLine} ${argLine.global}</argLine> <failIfNoTests>false</failIfNoTests> <systemPropertyVariables> <java.util.logging.SimpleFormatter.format>[%4$s] %5$s%6$s%n</java.util.logging.SimpleFormatter.format> </systemPropertyVariables> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> <configuration> <skip>true</skip> <skipDeploy>true</skipDeploy> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-help-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>show-profiles</id> <phase>compile</phase> <goals> <goal>active-profiles</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.4</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sources</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>javadoc</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sign</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>local</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>nexus-local</serverId> <nexusUrl>http://localhost:8081/nexus/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>nexus-local</id> <url>http://localhost:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>ossrh</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>ci</id> <activation> <property> <name>env.CI</name> <value>true</value> </property> </activation> <properties> <surefire.useSystemClassLoader>false</surefire.useSystemClassLoader> </properties> </profile> </profiles> </project>