step-automation-packages-manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.exense.step</groupId> <artifactId>step-automation-packages-manager</artifactId> <version>3.26.1</version> </dependency>
<!-- Copyright (C) 2020, exense GmbH This file is part of STEP Enterprise STEP Enterprise can not be copied and/or distributed without the express permission of exense GmbH --> <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>step-automation-packages</artifactId> <groupId>ch.exense.step</groupId> <version>3.26.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>step-automation-packages-manager</artifactId> <properties> </properties> <dependencies> <dependency> <groupId>ch.exense.step</groupId> <artifactId>step-automation-packages-yaml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ch.exense.step</groupId> <artifactId>step-automation-packages-junit-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ch.exense.step</groupId> <artifactId>step-functions-plugins-local-composite</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <!-- cleanup LocalResourceManager output in tests --> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>resources</directory> <includes> <include>**/*</include> <include>**</include> </includes> </fileset> <fileset> <directory>src/test/resources/samples</directory> <includes> <include>**/*</include> <include>**</include> </includes> </fileset> </filesets> </configuration> </plugin> </plugins> </build> </project>