<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>evomaster-client-java</artifactId> <groupId>org.evomaster</groupId> <version>6.1.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>evomaster-client-java-controller</artifactId> <name>${project.groupId}:${project.artifactId}</name> <build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>${kr.motd.maven.version}</version> </extension> </extensions> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <executions> <execution> <goals> <goal>test-compile</goal> <goal>test-compile-custom</goal> </goals> </execution> </executions> <configuration> <protocArtifact>com.google.protobuf:protoc:${com.google.protobuf.protoc.version}:exe:${os.detected.classifier}</protocArtifact> <pluginId>grpc-java</pluginId> <pluginArtifact>io.grpc:protoc-gen-grpc-java:${io.grpc.version}:exe:${os.detected.classifier}</pluginArtifact> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>false</shadedArtifactAttached> <createDependencyReducedPom>true</createDependencyReducedPom> <minimizeJar>false</minimizeJar> <transformers> <transformer /> </transformers> <artifactSet> <excludes> <exclude>javax.annotation:javax.annotation-api</exclude> <exclude>javax.inject:javax.inject</exclude> <exclude>org.glassfish.hk2.external:javax.inject</exclude> <exclude>javax.validation:validation-api</exclude> <exclude>javax.servlet:javax.servlet-api</exclude> <exclude>javax.ws.rs:javax.ws.rs-api</exclude> </excludes> </artifactSet> <relocations> <relocation> <pattern>com.fasterxml</pattern> <shadedPattern>shaded.com.fasterxml</shadedPattern> </relocation> <relocation> <pattern>com.ea</pattern> <shadedPattern>shaded.com.ea</shadedPattern> </relocation> <relocation> <pattern>javassist</pattern> <shadedPattern>shaded.javassist</shadedPattern> </relocation> <relocation> <pattern>jersey.repackaged</pattern> <shadedPattern>shaded.jersey.repackaged</shadedPattern> </relocation> <relocation> <pattern>org.aopalliance</pattern> <shadedPattern>shaded.org.aopalliance</shadedPattern> </relocation> <relocation> <pattern>org.eclipse</pattern> <shadedPattern>shaded.org.eclipse</shadedPattern> </relocation> <relocation> <pattern>org.glassfish</pattern> <shadedPattern>shaded.org.glassfish</shadedPattern> </relocation> <relocation> <pattern>org.jvnet</pattern> <shadedPattern>shaded.org.jvnet</shadedPattern> </relocation> <relocation> <pattern>org.objectweb</pattern> <shadedPattern>shaded.org.objectweb</shadedPattern> </relocation> <relocation> <pattern>net.sf.jsqlparser</pattern> <shadedPattern>shaded.net.sf.jsqlparser</shadedPattern> </relocation> <relocation> <pattern>org.antlr</pattern> <shadedPattern>shaded.org.antlr</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.evomaster</groupId> <artifactId>evomaster-ci-utils</artifactId> <version>6.1.1</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.1.0.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> <version>2.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.14.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.14.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>5.5.7</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>groovy</artifactId> <groupId>org.apache.groovy</groupId> </exclusion> <exclusion> <artifactId>groovy-xml</artifactId> <groupId>org.apache.groovy</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpmime</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>tagsoup</artifactId> <groupId>org.ccil.cowan.tagsoup</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>io.rest-assured</groupId> </exclusion> <exclusion> <artifactId>xml-path</artifactId> <groupId>io.rest-assured</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>2.1.212</version> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.3.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>checker-qual</artifactId> <groupId>org.checkerframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>1.21.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>commons-compress</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>duct-tape</artifactId> <groupId>org.rnorth.duct-tape</groupId> </exclusion> <exclusion> <artifactId>docker-java-api</artifactId> <groupId>com.github.docker-java</groupId> </exclusion> <exclusion> <artifactId>docker-java-transport-zerodep</artifactId> <groupId>com.github.docker-java</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>20.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.4.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.27</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>protobuf-java</artifactId> <groupId>com.google.protobuf</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>2.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>9.2.1.jre8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.15.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>httpcore</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>bson</artifactId> <version>4.2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-sync</artifactId> <version>4.2.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mongodb-driver-core</artifactId> <groupId>org.mongodb</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> <version>6.1.4.RELEASE</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>reactor-core</artifactId> <groupId>io.projectreactor</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>netty-nio-client</artifactId> <version>2.25.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>annotations</artifactId> <groupId>software.amazon.awssdk</groupId> </exclusion> <exclusion> <artifactId>http-client-spi</artifactId> <groupId>software.amazon.awssdk</groupId> </exclusion> <exclusion> <artifactId>utils</artifactId> <groupId>software.amazon.awssdk</groupId> </exclusion> <exclusion> <artifactId>metrics-spi</artifactId> <groupId>software.amazon.awssdk</groupId> </exclusion> <exclusion> <artifactId>netty-codec-http</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-codec-http2</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-codec</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-transport</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-common</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-buffer</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-handler</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-transport-classes-epoll</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-resolver</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>reactive-streams</artifactId> <groupId>org.reactivestreams</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <version>1.57.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>error_prone_annotations</artifactId> <groupId>com.google.errorprone</groupId> </exclusion> <exclusion> <artifactId>perfmark-api</artifactId> <groupId>io.perfmark</groupId> </exclusion> <exclusion> <artifactId>grpc-core</artifactId> <groupId>io.grpc</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> <version>1.57.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>grpc-api</artifactId> <groupId>io.grpc</groupId> </exclusion> <exclusion> <artifactId>jsr305</artifactId> <groupId>com.google.code.findbugs</groupId> </exclusion> <exclusion> <artifactId>proto-google-common-protos</artifactId> <groupId>com.google.api.grpc</groupId> </exclusion> <exclusion> <artifactId>grpc-protobuf-lite</artifactId> <groupId>io.grpc</groupId> </exclusion> <exclusion> <artifactId>protobuf-java</artifactId> <groupId>com.google.protobuf</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> <version>1.57.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>grpc-api</artifactId> <groupId>io.grpc</groupId> </exclusion> <exclusion> <artifactId>error_prone_annotations</artifactId> <groupId>com.google.errorprone</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>
<dependency> <groupId>org.evomaster</groupId> <artifactId>evomaster-client-java-controller</artifactId> <version>6.1.1</version> <classifier>tests</classifier> </dependency>
org.evomaster:evomaster-client-java-controller:6.1.1:tests