<?xml version="1.0"?>
<!--
  ~ Copyright (c) 2011-2014 The original author or authors
  ~
  ~  All rights reserved. This program and the accompanying materials
  ~  are made available under the terms of the Eclipse Public License v1.0
  ~  and Apache License v2.0 which accompanies this distribution.
  ~
  ~      The Eclipse Public License is available at
  ~      http://www.eclipse.org/legal/epl-v10.html
  ~
  ~      The Apache License v2.0 is available at
  ~      http://www.opensource.org/licenses/apache2.0.php
  ~
  ~  You may elect to redistribute this code under either of these licenses.
  --><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">
      
    <modelVersion>4.0.0</modelVersion>
      
    <parent>
            
        <groupId>io.vertx</groupId>
            
        <artifactId>vertx-ext-parent</artifactId>
            
        <version>38</version>
          
    </parent>
      
    <artifactId>vertx-reactive-streams</artifactId>
      
    <version>4.5.10</version>
      
    <name>Vert.x - Reactive Streams</name>
      
    <properties>
            
        <reactive.streams.version>1.0.3</reactive.streams.version>
            
        <stack.version>4.5.10</stack.version>
            
        <jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
          
    </properties>
      
    <dependencyManagement>
            
        <dependencies>
                  
            <dependency>
                        
                <groupId>io.vertx</groupId>
                        
                <artifactId>vertx-dependencies</artifactId>
                        
                <version>${stack.version}</version>
                        
                <type>pom</type>
                        
                <scope>import</scope>
                      
            </dependency>
                
        </dependencies>
          
    </dependencyManagement>
      
    <dependencies>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-core</artifactId>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-codegen</artifactId>
                  
            <optional>true</optional>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-docgen</artifactId>
                  
            <optional>true</optional>
                
        </dependency>
            
        <dependency>
                  
            <groupId>org.reactivestreams</groupId>
                  
            <artifactId>reactive-streams</artifactId>
                  
            <version>${reactive.streams.version}</version>
                
        </dependency>
            
        <dependency>
                  
            <groupId>org.reactivestreams</groupId>
                  
            <artifactId>reactive-streams-tck</artifactId>
                  
            <version>${reactive.streams.version}</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-core</artifactId>
                  
            <type>test-jar</type>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>junit</groupId>
                  
            <artifactId>junit</artifactId>
                  
            <scope>test</scope>
                  
            <version>4.13.1</version>
                
        </dependency>
          
    </dependencies>
      
    <build>
            
        <plugins>
                  
            <plugin>
                        
                <groupId>org.apache.maven.plugins</groupId>
                        
                <artifactId>maven-surefire-plugin</artifactId>
                        
                <executions>
                              
                    <execution>
                                    
                        <id>default-test</id>
                                    
                        <goals>
                                          
                            <goal>test</goal>
                                        
                        </goals>
                                    
                        <configuration>
                                          
                            <excludes>
                                                
                                <exclude>**/tck/*</exclude>
                                              
                            </excludes>
                                          
                            <testNGArtifactName>none:none</testNGArtifactName>
                                        
                        </configuration>
                                  
                    </execution>
                              
                    <execution>
                                    
                        <id>tck</id>
                                    
                        <goals>
                                          
                            <goal>test</goal>
                                        
                        </goals>
                                    
                        <configuration>
                                          
                            <excludes>
                                                
                                <exclude>**/test/*</exclude>
                                                
                                <exclude>**/tck/SubscriberWhitebox*</exclude>
                                              
                            </excludes>
                                          
                            <junitArtifactName>none:none</junitArtifactName>
                                        
                        </configuration>
                                  
                    </execution>
                            
                </executions>
                      
            </plugin>
                
        </plugins>
          
    </build>
    
</project>
