crud-api-restful-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ir.msob.jima.crud</groupId> <artifactId>crud-api-restful-service</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ir.msob.jima.crud</groupId> <artifactId>crud-api-restful</artifactId> <version>1.3.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>crud-api-restful-service</artifactId> <name>service</name> <description>service</description> <packaging>jar</packaging> <dependencies> <!-- MSob --> <dependency> <groupId>ir.msob.jima.crud</groupId> <artifactId>crud-service</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>ir.msob.jima.core</groupId> <artifactId>core-api-restful-beans</artifactId> <version>${jima-commons.version}</version> </dependency> <!-- Test --> <dependency> <groupId>ir.msob.jima.core</groupId> <artifactId>core-ral-mongo-test</artifactId> <version>${jima-commons.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ir.msob.jima.crud</groupId> <artifactId>crud-ral-mongo-it</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ir.msob.jima.security</groupId> <artifactId>security-api-restful-it</artifactId> <version>${jima-security.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ir.msob.jima.crud</groupId> <artifactId>crud-api-restful-test</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ir.msob.jima.security</groupId> <artifactId>security-ral-keycloak-test</artifactId> <version>${jima-security.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ir.msob.jima.security</groupId> <artifactId>security-ral-keycloak-it</artifactId> <version>${jima-security.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> <scope>test</scope> </dependency> </dependencies> </project>