Philipp Zehnder | d69504c | 2024-05-02 08:38:14 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | ~ contributor license agreements. See the NOTICE file distributed with |
| 5 | ~ this work for additional information regarding copyright ownership. |
| 6 | ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | ~ (the "License"); you may not use this file except in compliance with |
| 8 | ~ the License. You may obtain a copy of the License at |
| 9 | ~ |
| 10 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ~ |
| 12 | ~ Unless required by applicable law or agreed to in writing, software |
| 13 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | ~ See the License for the specific language governing permissions and |
| 16 | ~ limitations under the License. |
| 17 | ~ |
| 18 | --> |
| 19 | |
| 20 | <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"> |
| 21 | <parent> |
| 22 | <artifactId>streampipes-parent</artifactId> |
| 23 | <groupId>org.apache.streampipes</groupId> |
bossenti | b238f49 | 2024-05-07 08:58:49 +0200 | [diff] [blame] | 24 | <version>0.97.0-SNAPSHOT</version> |
Philipp Zehnder | d69504c | 2024-05-02 08:38:14 +0200 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <artifactId>streampipes-test-utils-executors</artifactId> |
| 29 | |
| 30 | <dependencies> |
| 31 | <!-- Test dependencies --> |
| 32 | <dependency> |
| 33 | <groupId>org.junit.jupiter</groupId> |
| 34 | <artifactId>junit-jupiter-api</artifactId> |
| 35 | <scope>compile</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.mockito</groupId> |
| 39 | <artifactId>mockito-core</artifactId> |
| 40 | <scope>compile</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.streampipes</groupId> |
| 44 | <artifactId>streampipes-pipeline-management</artifactId> |
bossenti | b238f49 | 2024-05-07 08:58:49 +0200 | [diff] [blame] | 45 | <version>0.97.0-SNAPSHOT</version> |
Philipp Zehnder | d69504c | 2024-05-02 08:38:14 +0200 | [diff] [blame] | 46 | <exclusions> |
| 47 | <exclusion> |
| 48 | <groupId>org.objenesis</groupId> |
| 49 | <artifactId>objenesis</artifactId> |
| 50 | </exclusion> |
| 51 | <exclusion> |
| 52 | <groupId>net.bytebuddy</groupId> |
| 53 | <artifactId>byte-buddy</artifactId> |
| 54 | </exclusion> |
| 55 | </exclusions> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.streampipes</groupId> |
| 59 | <artifactId>streampipes-test-utils</artifactId> |
bossenti | b238f49 | 2024-05-07 08:58:49 +0200 | [diff] [blame] | 60 | <version>0.97.0-SNAPSHOT</version> |
Philipp Zehnder | d69504c | 2024-05-02 08:38:14 +0200 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.junit.jupiter</groupId> |
| 64 | <artifactId>junit-jupiter-params</artifactId> |
| 65 | </dependency> |
| 66 | </dependencies> |
| 67 | <build> |
| 68 | <plugins> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
| 75 | </project> |