builderGenerator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.loxia.builder.generator</groupId> <artifactId>builderGenerator</artifactId> <version>1.0.2</version> </dependency>
<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> <artifactId>builderGenerator</artifactId> <packaging>jar</packaging> <name>Loxia builder generator</name> <description>The Loxia builder generator. This is the annotation processor which generates the builder classes.</description> <parent> <groupId>nl.loxia.builder.generator</groupId> <artifactId>aggregator</artifactId> <version>1.0.2</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.release>11</maven.compiler.release> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <modernizer.failOnViolations>true</modernizer.failOnViolations> <modernizer.javaVersion>1.11</modernizer.javaVersion> <!-- dependency version management --> <freemarker.version>2.3.32</freemarker.version> <!-- test dependency version management --> <junit.version>5.9.3</junit.version> <junit.platform.version>1.9.3</junit.platform.version> <assertj.version>3.24.2</assertj.version> <eclipse.compiler.version>2.7.3</eclipse.compiler.version> </properties> <dependencies> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>${freemarker.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>annotations</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.13.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-api</artifactId> <version>2.13.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>10.12.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>2.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-compiler-jdt</artifactId> <version>${eclipse.compiler.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgument>-proc:none</compilerArgument> <includes> <include>nl/loxia/builder/generator/ap/BuilderProcessor.java</include> </includes> </configuration> </execution> <execution> <id>default-testCompile</id> <configuration> <compilerArgs> <!-- testCompiling is used to skip the generation of builder classes for which the processor should generate a compilation error. --> <arg>-AtestCompiling</arg> </compilerArgs> </configuration> </execution> <execution> <id>compile-project</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>