psl-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.linqs</groupId> <artifactId>psl-cli</artifactId> <version>2.4.0</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/maven-v4_0_0.xsd"> <parent> <artifactId>psl</artifactId> <groupId>org.linqs</groupId> <version>2.4.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.linqs</groupId> <artifactId>psl-cli</artifactId> <name>psl-cli</name> <description>The command line interface module of the PSL software from the LINQS research group.</description> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>com.github.fommil.netlib:netlib-native_*-*-i686:jar:*</exclude> <exclude>com.github.fommil.netlib:netlib-native_*-win-*:jar:*</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>org/sqlite/native/Linux-Android/**</exclude> <exclude>org/sqlite/native/Linux-Musl/**</exclude> <exclude>org/sqlite/native/Windows/**</exclude> </excludes> </filter> <filter> <artifact>org.linqs*:*</artifact> <includes> <include>**</include> </includes> </filter> </filters> <transformers> <transformer> <mainClass>org.linqs.psl.cli.Launcher</mainClass> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <rootdir>${project.basedir}/..</rootdir> </properties> </project>