microstream-integrations-cdi3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>one.microstream</groupId> <artifactId>microstream-integrations-cdi3</artifactId> <version>08.01.01-MS-GA</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <artifactId>microstream-integrations-cdi3</artifactId> <parent> <groupId>one.microstream</groupId> <artifactId>microstream-integrations-parent</artifactId> <version>08.01.01-MS-GA</version> <relativePath>../pom.xml</relativePath> </parent> <name>MicroStream Integrations CDI 3</name> <description>MicroStream CDI 3+ Extension</description> <properties> <maven.test.skip>true</maven.test.skip> </properties> <dependencies> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <version>3.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.cache</groupId> <artifactId>cache-api</artifactId> <version>1.1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>one.microstream</groupId> <artifactId>microstream-storage-embedded</artifactId> <version>08.01.01-MS-GA</version> </dependency> <dependency> <groupId>one.microstream</groupId> <artifactId>microstream-storage-embedded-configuration</artifactId> <version>08.01.01-MS-GA</version> </dependency> <dependency> <groupId>one.microstream</groupId> <artifactId>microstream-configuration</artifactId> <version>08.01.01-MS-GA</version> </dependency> <dependency> <groupId>one.microstream</groupId> <artifactId>microstream-cache</artifactId> <version>08.01.01-MS-GA</version> </dependency> <!--Test--> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config</artifactId> <version>3.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-junit5</artifactId> <version>3.1.0.Final</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>run-its</id> <properties> <maven.test.skip>false</maven.test.skip> </properties> <build> <plugins> <plugin> <!-- For JUnit 5 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <!-- testing is using some level stuff and mainly needed to pass on JDK 17 --> <argLine>--illegal-access=permit</argLine> <argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>