fluent-api-generator-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>foundation.fluent.api</groupId>
<artifactId>fluent-api-generator-project</artifactId>
<version>2.18</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">
<groupId>foundation.fluent.api</groupId>
<artifactId>fluent-api-generator-project</artifactId>
<packaging>pom</packaging>
<version>2.18</version>
<modules>
<module>fluent-api-generator-annotations</module>
<module>fluent-api-generator</module>
<module>fluent-api-generator-tests</module>
<module>fluent-validation-generator</module>
<module>fluent-builder-api-generator</module>
<module>fluent-config-generator</module>
<module>fluent-common-api-generator</module>
</modules>
<modelVersion>4.0.0</modelVersion>
<name>Project Fluent API generator</name>
<description>
Module provides annotation based code generator, that generates fluent API for various situations.
Such patterns contain:
- Fluent builder for bean, which has setter methods returning void.
- Fluent builder for a method / constructor with many arguments.
- Fluent sender for bean, which has setter methods returning void, and target (sender) method.
</description>
<url>https://github.com/c0stra/fluent-api-generator/wiki/fluent-api-generator</url>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.18.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Ondrej Fischer</name>
<email>ondrej.fischer@gmail.com</email>
<url>http://github.com/c0stra</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/c0stra/fluent-api-generator.git</connection>
<developerConnection>scm:git:ssh://git@github.com/c0stra/fluent-api-generator.git</developerConnection>
<url>https://github.com/c0stra/fluent-api-generator</url>
<tag>fluent-api-generator-2.18</tag>
</scm>
<properties>
<java.version>1.8</java.version>
<compiler.plugin.version>3.8.0</compiler.plugin.version>
<testng.version>6.14.3</testng.version>
<mockito.version>2.18.3</mockito.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<fluent.api.end.check.version>1.16</fluent.api.end.check.version>
<fluent.validation.support>2.6</fluent.validation.support>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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.0.1</version>
<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>1.6</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-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>deploy</goals>
<tagNameFormat>fluent-api-generator-@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>