qudtlib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.qudtlib</groupId> <artifactId>qudtlib</artifactId> <version>6.4.3</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"> <parent> <artifactId>qudtlib-java</artifactId> <groupId>io.github.qudtlib</groupId> <version>6.4.3</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <artifactId>qudtlib</artifactId> <dependencies> <dependency> <groupId>io.github.qudtlib</groupId> <artifactId>qudtlib-main</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.qudtlib</groupId> <artifactId>qudtlib-init-hardcoded</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.qudtlib</groupId> <artifactId>qudtlib-test</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <dependenciesToScan> <dependency>io.github.qudtlib:qudtlib-test:test-jar:tests</dependency> </dependenciesToScan> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build> </project>