|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.testsigma.addons</groupId> |
| 5 | + <artifactId>stores_random_value_from_input_array</artifactId> |
| 6 | + <version>1.0.0</version> |
| 7 | + <build> |
| 8 | + <finalName>stores_random_value_from_input_array</finalName> |
| 9 | + <plugins> |
| 10 | + <plugin> |
| 11 | + <artifactId>maven-shade-plugin</artifactId> |
| 12 | + <version>3.2.4</version> |
| 13 | + <executions> |
| 14 | + <execution> |
| 15 | + <phase>package</phase> |
| 16 | + <goals> |
| 17 | + <goal>shade</goal> |
| 18 | + </goals> |
| 19 | + </execution> |
| 20 | + </executions> |
| 21 | + </plugin> |
| 22 | + <plugin> |
| 23 | + <artifactId>maven-source-plugin</artifactId> |
| 24 | + <version>${maven.source.plugin.version}</version> |
| 25 | + <executions> |
| 26 | + <execution> |
| 27 | + <id>attach-sources</id> |
| 28 | + <goals> |
| 29 | + <goal>jar</goal> |
| 30 | + </goals> |
| 31 | + </execution> |
| 32 | + </executions> |
| 33 | + </plugin> |
| 34 | + </plugins> |
| 35 | + </build> |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>org.junit.jupiter</groupId> |
| 39 | + <artifactId>junit-jupiter-api</artifactId> |
| 40 | + <version>5.8.0-M1</version> |
| 41 | + <scope>test</scope> |
| 42 | + <exclusions> |
| 43 | + <exclusion> |
| 44 | + <artifactId>apiguardian-api</artifactId> |
| 45 | + <groupId>org.apiguardian</groupId> |
| 46 | + </exclusion> |
| 47 | + <exclusion> |
| 48 | + <artifactId>opentest4j</artifactId> |
| 49 | + <groupId>org.opentest4j</groupId> |
| 50 | + </exclusion> |
| 51 | + <exclusion> |
| 52 | + <artifactId>junit-platform-commons</artifactId> |
| 53 | + <groupId>org.junit.platform</groupId> |
| 54 | + </exclusion> |
| 55 | + </exclusions> |
| 56 | + </dependency> |
| 57 | + </dependencies> |
| 58 | + <properties> |
| 59 | + <testsigma.sdk.version>1.2.24_cloud</testsigma.sdk.version> |
| 60 | + <lombok.version>1.18.30</lombok.version> |
| 61 | + <maven.source.plugin.version>3.2.1</maven.source.plugin.version> |
| 62 | + <maven.compiler.target>11</maven.compiler.target> |
| 63 | + <maven.compiler.source>11</maven.compiler.source> |
| 64 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 65 | + <junit.jupiter.version>5.8.0-M1</junit.jupiter.version> |
| 66 | + <testsigma.addon.maven.plugin>1.0.0</testsigma.addon.maven.plugin> |
| 67 | + </properties> |
| 68 | +</project> |
0 commit comments