Spring Data Core

Global parent pom.xml to be used by Spring Data modules

License

License

Categories

Categories

Data
GroupId

GroupId

com.github.iherasymenko
ArtifactId

ArtifactId

spring-data-commons
Last Version

Last Version

2.3.4.1.RELEASE
Release Date

Release Date

Type

Type

jar
Description

Description

Spring Data Core
Global parent pom.xml to be used by Spring Data modules
Project Organization

Project Organization

Pivotal Software, Inc.

Download spring-data-commons

How to add to project

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

Dependencies

compile (33)

Group / Artifact Type Version
org.springframework : spring-core jar
org.springframework : spring-beans jar
org.springframework : spring-context Optional jar
org.springframework : spring-expression Optional jar
org.springframework : spring-tx Optional jar
org.springframework : spring-oxm Optional jar
com.fasterxml.jackson.core : jackson-databind Optional jar
org.springframework : spring-web Optional jar
org.springframework : spring-webflux Optional jar
javax.annotation : javax.annotation-api Optional jar 1.3.2
joda-time : joda-time Optional jar 2.10.6
org.threeten : threetenbp Optional jar 1.4.4
io.projectreactor : reactor-core Optional jar
io.reactivex : rxjava Optional jar 1.3.8
io.reactivex : rxjava-reactive-streams Optional jar 1.2.1
io.reactivex.rxjava2 : rxjava Optional jar 2.2.19
com.querydsl : querydsl-core Optional jar 4.3.1
com.querydsl : querydsl-collections Optional jar 4.3.1
javax.ejb : ejb-api Optional jar 3.0
com.google.guava : guava Optional jar 19.0
io.vavr : vavr Optional jar 0.10.3
org.springframework.hateoas : spring-hateoas Optional jar 1.1.1.RELEASE
org.springframework : spring-webmvc Optional jar
org.jetbrains.kotlin : kotlin-stdlib Optional jar
org.jetbrains.kotlin : kotlin-reflect Optional jar
org.jetbrains.kotlinx : kotlinx-coroutines-core Optional jar
org.jetbrains.kotlinx : kotlinx-coroutines-reactive Optional jar
org.jetbrains.kotlinx : kotlinx-coroutines-reactor Optional jar
org.scala-lang : scala-library Optional jar 2.11.7
com.jayway.jsonpath : json-path Optional jar 2.4.0
org.xmlbeam : xmlprojector Optional jar 1.4.17
org.slf4j : slf4j-api jar 1.7.26
org.projectlombok : lombok Optional jar 1.18.12

provided (3)

Group / Artifact Type Version
javax.servlet : javax.servlet-api jar 3.0.1
com.querydsl : querydsl-apt jar 4.3.1
javax.enterprise : cdi-api Optional jar 1.0

test (19)

Group / Artifact Type Version
io.projectreactor : reactor-test jar
org.apache.geronimo.specs : geronimo-jcdi_2.0_spec jar 1.0.1
javax.interceptor : javax.interceptor-api jar 1.2.1
javax.el : el-api jar 1.0
org.apache.openwebbeans : openwebbeans-se jar 2.0.17
com.sun.xml.bind : jaxb-impl jar 2.2.3U1
xmlunit : xmlunit jar 1.6
org.codehaus.groovy : groovy-all jar 2.4.4
org.jetbrains.kotlin : kotlin-test-junit5 jar 1.3.72
io.mockk : mockk jar 1.10.0
javax.transaction : javax.transaction-api jar 1.2
de.schauderhaft.degraph : degraph-check jar 0.1.4
org.junit.jupiter : junit-jupiter jar
org.junit.vintage : junit-vintage-engine jar
org.mockito : mockito-core jar 3.3.3
org.mockito : mockito-junit-jupiter jar 3.3.3
org.assertj : assertj-core jar 3.16.1
org.springframework : spring-test jar
ch.qos.logback : logback-classic jar 1.2.3

Project Modules

There are no modules declared in this project.

Spring Data Build Infrastructure icon?job=spring data build%2Fmaster&subject=Build

This repository contains common infrastructure to be used by Spring Data modules that build with Maven. It consists of a resources project that bundles up resources that are needed during the build CSS for reference documentation generation and JavaDoc. The second project is parent that can be used as parent project to pre-configure core dependencies, properties, reference documentation generation and most important of all the appropriate distribution assembly.

The parent project can be eased for either a single-module Maven project or a multi-module one. Each of the setups requires a slightly different setup of the project.

Code of Conduct

This project is governed by the Spring Code of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to [email protected].

Project setup

General setup

The parent project configures the following aspects of the project build:

Shared resources are pulled in from the spring-data-build-resources dependency (images, CSS, JavaScript). Renders reference documentation from Asciidoc file named index.adoc within src/asciidoc. In the distribute profile, two assemblies are generated: A ZIP to be uploaded to docs.spring.io (incl. javadoc (browsable), reference docs as described before) with the following content:

- changelog.txt
- notice.txt
+ reference -> Asciidoc generated reference documentation
  + html
  + pdf
  + epub
+ api -> JavaDoc

A second ZIP is generated to be uploaded to docs.spring.io to contain all Spring namespace XSDs.

The following dependencies are pre-configured.

  • Logging dependencies: SLF4j + Commons Logging bridge and Logback as test dependency

  • Test dependencies: JUnit / AssertJ / Hamcrest / Mockito

  • Dependency versions for commonly used dependencies

Single project setup

If the client project is a project consisting of a single project only all that needs to be done is declaring the parent project:

<parent>
	<groupId>org.springframework.data.build</groupId>
	<artifactId>spring-data-parent</artifactId>
	<version>${most-recent-release-version}</version>
</parent>

Be sure to adapt the version number to the latest release version. The second and already last step of the setup is to activate the assembly and asciidoctor plugin in the build section:

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
	<groupId>org.asciidoctor</groupId>
	<artifactId>asciidoctor-maven-plugin</artifactId>
</plugin>

As an example have a look at the build of Spring Data JPA.

Multi project setup

A multi module setup requires slightly more setup and some structure being set up.

  • The root pom.xml needs to configure the project.type property to multi.

  • Asciidoc documentation sources need to be in the root project.

  • The assembly needs to be build in a dedicated sub-module (e.g. distribution), declare the assembly plugin (see single project setup) in that submodule and reconfigure the project.root property in that module to ${basedir}/...

  • Configure ${dist.id} in the root project to the basic artifact id (e.g. spring-data-mongodb) as this will serve as file name for distribution artifacts, static resources etc. It will default to the artifact id and thus usually resolve to a …-parent if not configured properly.

As an example have a look at the build of Spring Data MongoDB.

Build configuration

  • Goals to execute clean (dependency:tree) install -Pci to run the build

  • Goals to execute clean deploy -Pci,artifactory to deploy artifacts to Artifactory

  • A nightly build can then use clean (dependency:tree) deploy -Pdistribute to publish reference documentation

Additional build profiles

  • ci - Packages the JavaDoc as JAR for distribution (needs to be active on the CI server to make sure we distribute JavaDoc as JAR).

  • distribute - Creates Asciidoc documentation.

  • distribute-schema - Creates schema file distribution.

  • spring…-next - Configures the Spring version to be used to be the next Spring Framework snapshot version.

License

Spring Data Build is Open Source software released under the Apache 2.0 license.

com.github.iherasymenko

Spring

Versions

Version
2.3.4.1.RELEASE