|
| 1 | +<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"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>io.virtualan</groupId> |
| 4 | + <artifactId>idaithalam-db-kafka-apitesting</artifactId> |
| 5 | + <packaging>jar</packaging> |
| 6 | + <name>idaithalam-db-kafka-apitesting</name> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
| 8 | + <properties> |
| 9 | + <kafka-clients.version>2.8.0</kafka-clients.version> |
| 10 | + <cucumber.version>7.0.0</cucumber.version> |
| 11 | + <virtualan.version>1.4.2</virtualan.version> |
| 12 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | + <slf4j.version>1.7.33</slf4j.version> |
| 14 | + <idaithalam.version>1.6.1-SNAPSHOT</idaithalam.version> |
| 15 | + <testng.ver>7.5</testng.ver> |
| 16 | + <java.version>11</java.version> |
| 17 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 18 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <build> |
| 22 | + <plugins> |
| 23 | + <plugin> |
| 24 | + <groupId>org.apache.maven.plugins</groupId> |
| 25 | + <artifactId>maven-surefire-plugin</artifactId> |
| 26 | + <version>2.18.1</version> |
| 27 | + <configuration> |
| 28 | + <skipTests>false</skipTests> |
| 29 | + <suiteXmlFiles> |
| 30 | + <suiteXmlFile>api-testing.xml</suiteXmlFile> |
| 31 | + </suiteXmlFiles> |
| 32 | + </configuration> |
| 33 | + </plugin> |
| 34 | + <plugin> |
| 35 | + <groupId>net.masterthought</groupId> |
| 36 | + <artifactId>maven-cucumber-reporting</artifactId> |
| 37 | + <version>5.6.0</version> |
| 38 | + <executions> |
| 39 | + <execution> |
| 40 | + <id>report</id> |
| 41 | + <phase>install</phase> |
| 42 | + <goals> |
| 43 | + <goal>generate</goal> |
| 44 | + </goals> |
| 45 | + <configuration> |
| 46 | + <projectName>KAFKA TESTING</projectName> |
| 47 | + <outputDirectory>target/html-reports</outputDirectory> |
| 48 | + <inputDirectory>${project.build.directory}</inputDirectory> |
| 49 | + <jsonFiles> |
| 50 | + <param>**/cucumber-*.json</param> |
| 51 | + </jsonFiles> |
| 52 | + <mergeFeaturesWithRetest>true</mergeFeaturesWithRetest> |
| 53 | + <mergeFeaturesById>true</mergeFeaturesById> |
| 54 | + <checkBuildResult>false</checkBuildResult> |
| 55 | + <skipEmptyJSONFiles>true</skipEmptyJSONFiles> |
| 56 | + <skip>false</skip> |
| 57 | + </configuration> |
| 58 | + </execution> |
| 59 | + </executions> |
| 60 | + </plugin> |
| 61 | + </plugins> |
| 62 | + </build> |
| 63 | + <dependencies> |
| 64 | + <dependency> |
| 65 | + <groupId>io.virtualan</groupId> |
| 66 | + <artifactId>idaithalam</artifactId> |
| 67 | + <version>${idaithalam.version}</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.testng</groupId> |
| 71 | + <artifactId>testng</artifactId> |
| 72 | + <version>${testng.ver}</version> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>org.slf4j</groupId> |
| 76 | + <artifactId>slf4j-api</artifactId> |
| 77 | + <version>${slf4j.version}</version> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>org.slf4j</groupId> |
| 81 | + <artifactId>slf4j-simple</artifactId> |
| 82 | + <version>${slf4j.version}</version> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>org.apache.commons</groupId> |
| 86 | + <artifactId>commons-lang3</artifactId> |
| 87 | + <version>3.12.0</version> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>org.springframework.boot</groupId> |
| 91 | + <artifactId>spring-boot-starter-test</artifactId> |
| 92 | + <scope>test</scope> |
| 93 | + <version>2.5.10</version> |
| 94 | + <exclusions> |
| 95 | + <exclusion> |
| 96 | + <groupId>com.vaadin.external.google</groupId> |
| 97 | + <artifactId>android-json</artifactId> |
| 98 | + </exclusion> |
| 99 | + <exclusion> |
| 100 | + <groupId>ch.qos.logback</groupId> |
| 101 | + <artifactId>logback-classic</artifactId> |
| 102 | + </exclusion> |
| 103 | + <exclusion> |
| 104 | + <artifactId>log4j-to-slf4j</artifactId> |
| 105 | + <groupId>org.apache.logging.log4j</groupId> |
| 106 | + </exclusion> |
| 107 | + </exclusions> |
| 108 | + </dependency> |
| 109 | + <dependency> |
| 110 | + <groupId>io.cucumber</groupId> |
| 111 | + <artifactId>cucumber-spring</artifactId> |
| 112 | + <version>${cucumber.version}</version> |
| 113 | + </dependency> |
| 114 | + |
| 115 | + <dependency> |
| 116 | + <groupId>org.springframework.boot</groupId> |
| 117 | + <artifactId>spring-boot-starter-web</artifactId> |
| 118 | + <version>2.5.10</version> |
| 119 | + <exclusions> |
| 120 | + <exclusion> |
| 121 | + <groupId>org.apache.logging.log4j</groupId> |
| 122 | + <artifactId>log4j-to-slf4j</artifactId> |
| 123 | + </exclusion> |
| 124 | + </exclusions> |
| 125 | + </dependency> |
| 126 | + |
| 127 | + <dependency> |
| 128 | + <groupId>org.springframework.kafka</groupId> |
| 129 | + <artifactId>spring-kafka</artifactId> |
| 130 | + <version>2.7.4</version> |
| 131 | + </dependency> |
| 132 | + |
| 133 | + <dependency> |
| 134 | + <groupId>org.springframework.integration</groupId> |
| 135 | + <artifactId>spring-integration-kafka</artifactId> |
| 136 | + <version>5.5.2</version> |
| 137 | + </dependency> |
| 138 | + |
| 139 | + <dependency> |
| 140 | + <groupId>org.apache.kafka</groupId> |
| 141 | + <artifactId>kafka-clients</artifactId> |
| 142 | + <version>2.7.2</version> |
| 143 | + </dependency> |
| 144 | + |
| 145 | + <dependency> |
| 146 | + <groupId>org.springframework.integration</groupId> |
| 147 | + <artifactId>spring-integration-core</artifactId> |
| 148 | + <version>5.5.2</version> |
| 149 | + </dependency> |
| 150 | + |
| 151 | + |
| 152 | + <dependency> |
| 153 | + <groupId>org.springframework.boot</groupId> |
| 154 | + <artifactId>spring-boot-starter-integration</artifactId> |
| 155 | + <version>2.5.2</version> |
| 156 | + </dependency> |
| 157 | + |
| 158 | + <dependency> |
| 159 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 160 | + <artifactId>jackson-core</artifactId> |
| 161 | + <version>2.13.1</version> |
| 162 | + </dependency> |
| 163 | + |
| 164 | + <dependency> |
| 165 | + <groupId>javax.validation</groupId> |
| 166 | + <artifactId>validation-api</artifactId> |
| 167 | + <version>2.0.0.Final</version> |
| 168 | + </dependency> |
| 169 | + <!-- START Virtual Service API support --> |
| 170 | + <dependency> |
| 171 | + <groupId>io.virtualan</groupId> |
| 172 | + <artifactId>virtualization</artifactId> |
| 173 | + <version>${virtualan.version}</version> |
| 174 | + <exclusions> |
| 175 | + <exclusion> |
| 176 | + <artifactId>log4j-to-slf4j</artifactId> |
| 177 | + <groupId>org.apache.logging.log4j</groupId> |
| 178 | + </exclusion> |
| 179 | + </exclusions> |
| 180 | + </dependency> |
| 181 | + |
| 182 | + <!-- HyperSQL DB --> |
| 183 | + <dependency> |
| 184 | + <groupId>org.hsqldb</groupId> |
| 185 | + <artifactId>hsqldb</artifactId> |
| 186 | + <version>2.6.1</version> |
| 187 | + |
| 188 | + </dependency> |
| 189 | + <!-- END Virtual Service API support --> |
| 190 | + |
| 191 | + <!-- Start embedded kafka --> |
| 192 | + <dependency> |
| 193 | + <groupId>org.springframework.kafka</groupId> |
| 194 | + <artifactId>spring-kafka-test</artifactId> |
| 195 | + <version>2.7.4</version> |
| 196 | + </dependency> |
| 197 | + |
| 198 | + |
| 199 | + <!-- End --> |
| 200 | + </dependencies> |
| 201 | +</project> |
0 commit comments