dubai-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.dbstarll</groupId>
<artifactId>dubai-model</artifactId>
<version>1.1.0</version>
</dependency><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.github.dbstarll.parent</groupId>
<artifactId>base</artifactId>
<version>1.1.9</version>
</parent>
<groupId>io.github.dbstarll</groupId>
<artifactId>dubai-model</artifactId>
<version>1.1.0</version>
<packaging>pom</packaging>
<description>dubai model</description>
<url>https://github.com/dbstarll/dubai-model</url>
<scm>
<connection>scm:git:${project.git.git.root}</connection>
<developerConnection>scm:git:${project.git.web.root}</developerConnection>
<url>${project.git.web.master}</url>
<tag>v1.1.0</tag>
</scm>
<properties>
<project.git.project>dubai-model</project.git.project>
<!-- module version -->
<version.utils-lang>1.0.2</version.utils-lang>
<version.spring>5.3.9</version.spring>
<version.spring.boot>2.5.3</version.spring.boot>
<version.mongodb>4.3.0</version.mongodb>
</properties>
<modules>
<module>entity</module>
<module>collection</module>
<module>service</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Commons Utils -->
<dependency>
<groupId>io.github.dbstarll</groupId>
<artifactId>utils-lang</artifactId>
<version>${version.utils-lang}</version>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${version.spring}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${version.spring}</version>
</dependency>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${version.spring.boot}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- MongoDB -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
<version>${version.mongodb}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>${version.mongodb}</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>java-test</id>
<activation>
<file>
<exists>src/test/java</exists>
</file>
</activation>
<properties>
<version.junit>4.13.2</version.junit>
<version.jmockit>1.49</version.jmockit>
<version.surefire-junit47>3.0.0-M5</version.surefire-junit47>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
<dependency>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>${version.jmockit}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>${version.surefire-junit47}</version>
</dependency>
</dependencies>
<configuration>
<argLine>
-javaagent:${settings.localRepository}/org/jmockit/jmockit/${version.jmockit}/jmockit-${version.jmockit}.jar
</argLine>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
<id>site-local</id>
<distributionManagement>
<site>
<id>local</id>
<url>${project.site.root.project}</url>
</site>
</distributionManagement>
</profile>
</profiles>
</project>