orivis-db-mongo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.orivis</groupId> <artifactId>orivis-db-mongo</artifactId> <version>0.0.9</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> <packaging>jar</packaging> <artifactId>orivis-db-mongo</artifactId> <version>0.0.9</version> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Dennis Oleshko</name> <email>dennis.oleshko@gmail.com</email> <organization>Dennis.systems</organization> <organizationUrl>https://gitlab.com/systems.dennis/shared</organizationUrl> </developer> </developers> <scm> <connection>https://gitlab.com/systems.dennis/shared.git</connection> <developerConnection>scm:git:ssh://gitlab.com/systems.dennis/shared.git</developerConnection> <url>http://systems.dennis/shared/tree/main</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> </plugins> </build> <properties> <maven.compiler.source>1.10</maven.compiler.source> <maven.compiler.target>1.10</maven.compiler.target> <orivis.core.version>0.4.3</orivis.core.version> <parent.version>0.0.4</parent.version> </properties> <parent> <groupId>net.orivis</groupId> <artifactId>orivis-parent</artifactId> <version>0.0.4</version> </parent> <dependencies> <!-- to enable hot swapping, disable cache for template and enable live reload --> <dependency> <groupId>net.orivis</groupId> <artifactId>orivis-core</artifactId> <version>${orivis.core.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.14.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.mongodb/mongo-java-driver --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> </dependency> </dependencies> </project>