spring-data-crud
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.peluware</groupId>
<artifactId>spring-data-crud</artifactId>
<version>1.1.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.5.6</version>
</parent>
<groupId>com.peluware</groupId>
<artifactId>spring-data-crud</artifactId>
<version>1.1.0</version>
<packaging>pom</packaging>
<name>spring-crud</name>
<description>Generic service-based artifact to automate CRUD operations in Spring applications.</description>
<url>https://github.com/peluware/spring-data-crud.git</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>luidmidev</id>
<name>Luis Miguel Vasquez Basurto</name>
<email>luidmidev@gmail.com</email>
</developer>
</developers>
<scm>
<url>https://github.com/peluware/spring-data-crud.git</url>
<connection>scm:git:git://github.com/peluware/spring-data-crud.git</connection>
<developerConnection>scm:git:sshl://github.com/peluware/spring-data-crud.git</developerConnection>
<tag>HEAD</tag>
</scm>
<modules>
<module>spring-data-crud-core</module>
<module>spring-data-crud-jpa</module>
<module>spring-data-crud-mongo</module>
</modules>
<properties>
<maven.compiler.release>21</maven.compiler.release>
<java.version>21</java.version>
<encoding.default>UTF-8</encoding.default>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<com.peluware.omnisearch.version>2.0.0</com.peluware.omnisearch.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<version>2.8.13</version>
</dependency>
<dependency>
<groupId>com.peluware</groupId>
<artifactId>spring-data-crud-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.peluware</groupId>
<artifactId>omni-search-core</artifactId>
<version>${com.peluware.omnisearch.version}</version>
</dependency>
<dependency>
<groupId>com.peluware</groupId>
<artifactId>omni-search-jpa</artifactId>
<version>${com.peluware.omnisearch.version}</version>
</dependency>
<dependency>
<groupId>com.peluware</groupId>
<artifactId>omni-search-mongodb</artifactId>
<version>${com.peluware.omnisearch.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</project>