identity-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>co.abit.boot</groupId>
<artifactId>identity-parent</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>co.abit.boot</groupId>
<artifactId>boot-starter-parent</artifactId>
<version>2.0.8</version>
<relativePath></relativePath>
</parent>
<groupId>co.abit.boot</groupId>
<artifactId>identity-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<properties>
<java.version>1.8</java.version>
<abit.identity.repository-dynamodb.version>1.0.0-SNAPSHOT</abit.identity.repository-dynamodb.version>
<abit.identity.repository-ibatis.version>1.0.1</abit.identity.repository-ibatis.version>
<abit.identity.repository.version>1.0.1</abit.identity.repository.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<abit.identity.domain.version>1.1.1</abit.identity.domain.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>co.abit.api</groupId>
<artifactId>identity-domain</artifactId>
<version>${abit.identity.domain.version}</version>
</dependency>
<dependency>
<groupId>co.abit.api</groupId>
<artifactId>identity-repository</artifactId>
<version>${abit.identity.repository.version}</version>
</dependency>
<dependency>
<groupId>co.abit.api</groupId>
<artifactId>identity-repository-ibatis</artifactId>
<version>${abit.identity.repository-ibatis.version}</version>
</dependency>
<dependency>
<groupId>co.abit.api</groupId>
<artifactId>identity-repository-dynamodb</artifactId>
<version>${abit.identity.repository-dynamodb.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.20</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.9.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>2.0.2.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>