extract
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.icij.extract</groupId>
<artifactId>extract</artifactId>
<version>6.5.0</version>
</dependency><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>
<groupId>org.icij.extract</groupId>
<artifactId>extract</artifactId>
<version>6.5.0</version>
<packaging>pom</packaging>
<name>ICIJ Extract</name>
<description>A cross-platform command line tool for parallelised content extraction and analysis.</description>
<url>https://github.com/ICIJ/extract</url>
<organization>
<name>The International Consortium of Investigative Journalists</name>
<url>https://www.icij.org/</url>
</organization>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/ICIJ/extract/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>The International Consortium of Investigative Journalists</name>
<email>engineering@icij.org</email>
</developer>
</developers>
<scm>
<url>https://github.com/ICIJ/extract</url>
<connection>scm:git:https://github.com/ICIJ/extract.git</connection>
<developerConnection>scm:git:https://github.com/ICIJ/extract.git</developerConnection>
</scm>
<modules>
<module>extract-lib</module>
<module>extract-cli</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<app.main.class>org.icij.extract.cli.Main</app.main.class>
<slf4j.version>1.7.27</slf4j.version>
<maven-compiler.version>3.6.0</maven-compiler.version>
<maven-dependency.version>2.10</maven-dependency.version>
<maven-jar.version>2.6</maven-jar.version>
<maven-surefire-version>2.22.2</maven-surefire-version>
<maven-shade.version>2.4.3</maven-shade.version>
<maven-install.version>2.5.2</maven-install.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.icij.extract</groupId>
<artifactId>extract-lib</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<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>
<build>
<plugins>
<!-- Compilation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-Xlint:all</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-version}</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- This is necessary for gpg to not try to use the pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>