jaorm-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-test</artifactId> <version>0.18.0</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"> <parent> <artifactId>jaorm-pom</artifactId> <groupId>io.github.ulisse1996</groupId> <version>0.18.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jaorm-test</artifactId> <name>JAORM (Integration Tests)</name> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <javapoet.version>1.13.0</javapoet.version> <compile-testing.version>0.19</compile-testing.version> <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/../${aggregate.report.dir}</sonar.coverage.jacoco.xmlReportPaths> <spring-data-jdbc.version>2.1.5</spring-data-jdbc.version> <spring-web.version>5.3.4</spring-web.version> <spring-boot-starter-test.version>2.4.3</spring-boot-starter-test.version> <junit-platform-launcher.version>1.4.1</junit-platform-launcher.version> <weld-junit5.version>2.0.2.Final</weld-junit5.version> <hsqldb.version>2.5.2</hsqldb.version> <jaorm.version>0.18.0</jaorm.version> </properties> <dependencies> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-core</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-processor</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-dsl</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-cache</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-transaction</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>io.github.ulisse1996</groupId> <artifactId>jaorm-lombok</artifactId> <version>${jaorm.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>${hsqldb.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-junit5</artifactId> <version>${weld-junit5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>${junit-platform-launcher.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot-starter-test.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring-web.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jdbc</artifactId> <version>${spring-data-jdbc.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.0.0-M5</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <phase>initialize</phase> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report-aggregate</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> </project>