yosql-models-immutables
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>wtf.metio.yosql.models</groupId> <artifactId>yosql-models-immutables</artifactId> <version>2023.5.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level ~ directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql, ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained ~ in the LICENSE file. --> <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"> <parent> <groupId>wtf.metio.yosql.models</groupId> <artifactId>yosql-models</artifactId> <version>2023.5.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>yosql-models-immutables</artifactId> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- INFORMATIONS --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#More_Project_Information --> <name>YoSQL :: Models :: Immutables</name> <dependencies> <dependency> <groupId>wtf.metio.yosql.internals</groupId> <artifactId>yosql-internals-jdk-utils</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>wtf.metio.yosql.models</groupId> <artifactId>yosql-models-configuration</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>wtf.metio.yosql.models</groupId> <artifactId>yosql-models-generator</artifactId> <version>${project.version}</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <phase>generate-sources</phase> <configuration> <type>immutables</type> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>process-immutables-annotations</id> <goals> <goal>compile</goal> </goals> <phase>process-sources</phase> <configuration> <includes> <include>${project.build.sourceDirectory/**/*.java</include> <include>${project.build.directory}/generated-sources/yosql/**/*.java</include> </includes> <proc>only</proc> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-yosql-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/yosql</source> </sources> </configuration> </execution> <execution> <id>add-immutables-source</id> <phase>process-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/annotations</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>