Revision 73c569094764d50ea35c25e3b5c3bec238460fd2 authored by Bruno Thomas on 13 November 2019, 10:12:35 UTC, committed by Bruno Thomas on 13 November 2019, 10:12:35 UTC
1 parent 1361b82
Raw File
pom.xml
<?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>datashare</artifactId>
        <groupId>org.icij.datashare</groupId>
        <version>4.18.0</version>
    </parent>

    <artifactId>datashare-dist</artifactId>
    <packaging>pom</packaging>

    <dependencies>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-app</artifactId>
            <version>${project.version}</version>
            <type>jar</type>
            <classifier>jar-with-dependencies</classifier>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-index</artifactId>
            <version>${project.version}</version>
            <type>jar</type>
            <classifier>jar-with-dependencies</classifier>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-db</artifactId>
            <version>${project.version}</version>
            <type>jar</type>
            <classifier>jar-with-dependencies</classifier>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-cli</artifactId>
            <version>${project.version}</version>
            <type>jar</type>
            <classifier>jar-with-dependencies</classifier>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-nlp-corenlp</artifactId>
            <version>${project.version}</version>
             <type>jar</type>
             <classifier>jar-with-dependencies</classifier>
             <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-nlp-opennlp</artifactId>
            <version>${project.version}</version>
             <type>jar</type>
             <classifier>jar-with-dependencies</classifier>
             <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-nlp-mitie</artifactId>
            <version>${project.version}</version>
             <type>jar</type>
             <classifier>jar-with-dependencies</classifier>
             <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.icij.datashare</groupId>
            <artifactId>datashare-nlp-ixapipe</artifactId>
            <version>${project.version}</version>
             <type>jar</type>
             <classifier>jar-with-dependencies</classifier>
             <scope>runtime</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <id>assembly</id>
                        <phase>none</phase>
                        <configuration>
                            <skip>true</skip>
                        </configuration>
                    </execution>
                    <execution>
                        <phase>package</phase>
                        <id>make-dist</id>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <descriptors>
                                <descriptor>src/assembly/all.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
back to top