restql-spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.cleverton-heusner</groupId> <artifactId>restql-spring-boot</artifactId> <version>1.0.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.3.4</version> <relativePath/> </parent> <groupId>io.github.cleverton-heusner</groupId> <artifactId>restql-spring-boot</artifactId> <version>${restql.spring.boot.version}</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Spring Boot module that enables dynamic field selection in REST APIs.</description> <url>https://github.com/cleverton-heusner/restql-spring-boot</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Cleverton Heusner</name> <email>heusner.cleverton@gmail.com</email> <organization>GitHub</organization> <organizationUrl>https://github.com/cleverton-heusner</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/cleverton-heusner/restql-spring-boot.git</connection> <developerConnection>scm:git:ssh://github.com/cleverton-heusner/restql-spring-boot.git</developerConnection> <url>https://github.com/cleverton-heusner/restql-spring-boot/tree/main</url> </scm> <properties> <!-- compiler --> <maven.compiler.source>22</maven.compiler.source> <maven.compiler.target>22</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- plugins --> <publishing.plugin.version>0.6.0</publishing.plugin.version> <gpg.plugin.version>1.6</gpg.plugin.version> <deploy.plugin.version>2.8.2</deploy.plugin.version> <source.plugin.version>3.2.1</source.plugin.version> <javadoc.plugin.version>3.3.1</javadoc.plugin.version> <!-- dependencies --> <restql.spring.boot.version>1.0.0</restql.spring.boot.version> <jackson.version>2.17.2</jackson.version> </properties> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${publishing.plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${deploy.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> </dependencies> </project>