OpenYich Data

A data module built on Spring Data JPA

License

License

Apache License, version 2.0
Categories

Categories

Data
GroupId

GroupId

com.github.zhycn
ArtifactId

ArtifactId

openyich-data
Last Version

Last Version

2.1.5
Release Date

Release Date

Type

Type

jar
Description

Description

OpenYich Data
A data module built on Spring Data JPA
Project Organization

Project Organization

OpenYich

Download openyich-data

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.zhycn/openyich-data/ -->
<dependency>
    <groupId>com.github.zhycn</groupId>
    <artifactId>openyich-data</artifactId>
    <version>2.1.5</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.zhycn/openyich-data/
implementation 'com.github.zhycn:openyich-data:2.1.5'
// https://jarcasting.com/artifacts/com.github.zhycn/openyich-data/
implementation ("com.github.zhycn:openyich-data:2.1.5")
'com.github.zhycn:openyich-data:jar:2.1.5'
<dependency org="com.github.zhycn" name="openyich-data" rev="2.1.5">
  <artifact name="openyich-data" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.zhycn', module='openyich-data', version='2.1.5')
)
libraryDependencies += "com.github.zhycn" % "openyich-data" % "2.1.5"
[com.github.zhycn/openyich-data "2.1.5"]

Dependencies

compile (4)

Group / Artifact Type Version
com.github.zhycn : openyich-framework jar 2.1.5
org.springframework.boot : spring-boot-starter-data-jpa jar 2.1.1.RELEASE
com.alibaba : druid-spring-boot-starter jar 1.1.10
org.springframework.boot : spring-boot-configuration-processor Optional jar 2.1.1.RELEASE

runtime (1)

Group / Artifact Type Version
mysql : mysql-connector-java jar 5.1.47

test (1)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-test jar 2.1.1.RELEASE

Project Modules

There are no modules declared in this project.

OpenYich BOM for all Spring Boot projects

This project provides a pom file that you can either import into your Spring Boot Application's bom, or use as your Spring Boot Application's parent pom.

  • JDK 8+
  • Spring Boot 2.1.2.RELEASE
  • Spring Cloud Greenwich.RELEASE
  • Spring IO Platform Cairo-SR6

Quick Start

The OpenYich BOM uses Maven's support for dependency management to provide dependency versions to your Spring Boot Application's build. To consume this dependency management you can import into your Spring Boot Application's pom:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.github.zhycn</groupId>
            <artifactId>openyich-dependencies</artifactId>
            <version>2.1.12</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Alternatively, rather than importing the OpenYich BOM, you may prefer to use it as your Spring Boot Application pom's parent:

<parent>
    <groupId>com.github.zhycn</groupId>
    <artifactId>openyich-dependencies</artifactId>
    <version>2.1.12</version>
    <relativePath/>
</parent>

Overriding a version

To override a property in Maven you can then declare the property in your pom’s <properties> section with the desired value:

<properties>
    <commons-lang3.version>3.8.1</commons-lang3.version>
</properties>
com.github.zhycn

Versions

Version
2.1.5
2.1.4