lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.evolvis.tartools.maven-parent</groupId>
<artifactId>lib</artifactId>
<version>3.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
To retrieve the latest source code, useful instructions and other aids:
$ mvn -U -Dartifact=org.evolvis.tartools.maven-parent:bs:RELEASE:tgz:source -DoutputDirectory=. dependency:copy #
Replace RELEASE with the <version> number below to get the artefact corresponding to that release.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.evolvis.tartools.maven-parent</groupId>
<artifactId>pom</artifactId>
<version>3.3</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>lib</artifactId>
<packaging>jar</packaging>
<description>Parent POM for Maven projects — Library</description>
<licenses>
<license>
<!-- short name: MirBSD -->
<name>The MirOS Licence</name>
<url>http://www.mirbsd.org/MirOS-Licence.htm</url>
</license>
</licenses>
<properties>
<!-- ‣ dependency management -->
<junit.version>5.10.3</junit.version>
<trajano.version>2.1.0</trajano.version>
</properties>
<dependencies>
<dependency>
<groupId>net.trajano.commons</groupId>
<artifactId>commons-testing</artifactId>
<version>${trajano.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.evolvis.tartools.maven-parent</groupId>
<artifactId>bs</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyse-dependency-usage</id>
<configuration>
<ignoredUnusedDeclaredDependencies combine.children="append">
<!-- must be on the test classpath -->
<ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-engine</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
<usedDependencies>
<!-- must be on the test classpath -->
<usedDependency>org.evolvis.tartools.maven-parent:bs</usedDependency>
</usedDependencies>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<!-- with run.sh this is no longer necessary -->
<mainClass>org.evolvis.tartools.mvnparent.examples.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>