quarkus-reactive-mssql-client-deployment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-reactive-mssql-client-deployment</artifactId> <version>3.21.2</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkus</groupId> <artifactId>quarkus-reactive-mssql-client-parent</artifactId> <version>3.21.2</version> </parent> <artifactId>quarkus-reactive-mssql-client-deployment</artifactId> <name>Quarkus - Reactive Microsoft SQL Server Client - Deployment</name> <properties> <reactive-mssql.url>vertx-reactive:sqlserver://localhost:1435</reactive-mssql.url> </properties> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-reactive-datasource-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-devservices-mssql</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-credentials-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-reactive-mssql-client</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-smallrye-health-spi</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-deployment</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5-internal</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-smallrye-health-deployment</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-reactive-datasource-deployment</artifactId> <scope>test</scope> <type>test-jar</type> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${project.version}</version> </path> </annotationProcessorPaths> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>test-mssql</id> <activation> <property> <name>test-containers</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>docker-mssql</id> <activation> <property> <name>start-containers</name> </property> </activation> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <configuration> <images> <image> <name>${mssql.image}</name> <alias>quarkus-test-mssql</alias> <run> <ports> <port>1435:1433</port> </ports> <env> <ACCEPT_EULA>Y</ACCEPT_EULA> <MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD> </env> <log> <prefix>MSSQL:</prefix> <date>default</date> <color>cyan</color> </log> <wait> <log>SQL Server is now ready for client connections</log> <!-- Unfortunately booting this is slow, needs to set a generous timeout: --> <time>40000</time> </wait> </run> </image> </images> <!--Stops all mcr.microsoft.com/mssql/server images currently running, not just those we just started. Useful to stop processes still running from a previously failed integration test run --> <allContainers>true</allContainers> </configuration> <executions> <execution> <id>docker-start</id> <phase>compile</phase> <goals> <goal>stop</goal> <goal>start</goal> </goals> </execution> <execution> <id>docker-stop</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>docker-prune</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>${docker-prune.location}</executable> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>