phenopacket-tools-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.phenopackets.phenopackettools</groupId>
<artifactId>phenopacket-tools-cli</artifactId>
<version>1.0.0-RC3</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>
<groupId>org.phenopackets.phenopackettools</groupId>
<artifactId>phenopacket-tools</artifactId>
<version>1.0.0-RC3</version>
</parent>
<artifactId>phenopacket-tools-cli</artifactId>
<name>phenopacket-tools-cli</name>
<description>Command-line utility for phenopacket-tools</description>
<dependencies>
<dependency>
<groupId>org.phenopackets.phenopackettools</groupId>
<artifactId>phenopacket-tools-builder</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.phenopackets.phenopackettools</groupId>
<artifactId>phenopacket-tools-converter</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.phenopackets.phenopackettools</groupId>
<artifactId>phenopacket-tools-validator-jsonschema</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.phenopackets.phenopackettools</groupId>
<artifactId>phenopacket-tools-io</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol-core</artifactId>
</dependency>
<dependency>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol-io</artifactId>
</dependency>
<dependency>
<!-- To override whatever YAML is used in Phenol. -->
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assemble/distribution.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>