aether-datafixers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers</artifactId>
<version>1.0.0-rc.1</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>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers</artifactId>
<version>1.0.0-rc.1</version>
<packaging>pom</packaging>
<modules>
<module>aether-datafixers-api</module>
<module>aether-datafixers-codec</module>
<module>aether-datafixers-core</module>
<module>aether-datafixers-testkit</module>
<module>aether-datafixers-cli</module>
<module>aether-datafixers-schema-tools</module>
<module>aether-datafixers-spring-boot-starter</module>
<module>aether-datafixers-examples</module>
<module>aether-datafixers-bom</module>
<module>aether-datafixers-functional-tests</module>
<module>aether-datafixers-benchmarks</module>
</modules>
<properties>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<gpg.useAgent>true</gpg.useAgent>
<!-- Skip integration tests by default -->
<skipITs>true</skipITs>
<!-- Stress test configuration (defaults for optional stress profile) -->
<stress.threads>100</stress.threads>
<stress.duration.minutes>5</stress.duration.minutes>
<stress.operations.per.thread>1000</stress.operations.per.thread>
<!-- definition of versions for dependencies -->
<jetbrains.annotations.version>26.0.2-1</jetbrains.annotations.version>
<gson.version>2.13.2</gson.version>
<jackson.version>2.21.0</jackson.version>
<guava.version>33.5.0-jre</guava.version>
<junit.jupiter.version>5.13.4</junit.jupiter.version>
<assertj.version>3.27.7</assertj.version>
<slf4j.version>2.0.17</slf4j.version>
<spotbugs.version>4.9.8</spotbugs.version>
<!-- definition of versions for plugins -->
<plugin.compiler.version>3.14.1</plugin.compiler.version>
<plugin.enforcer.version>3.6.2</plugin.enforcer.version>
<plugin.source.version>3.4.0</plugin.source.version>
<plugin.javadoc.version>3.12.0</plugin.javadoc.version>
<plugin.site.version>3.21.0</plugin.site.version>
<plugin.gpg.version>3.2.8</plugin.gpg.version>
<plugin.surefire.version>3.5.4</plugin.surefire.version>
<plugin.failsafe.version>3.5.4</plugin.failsafe.version>
<plugin.shade.version>3.6.1</plugin.shade.version>
<!-- QA plugin versions -->
<plugin.jacoco.version>0.8.14</plugin.jacoco.version>
<plugin.spotbugs.version>4.9.8.2</plugin.spotbugs.version>
<plugin.checkstyle.version>3.6.0</plugin.checkstyle.version>
<plugin.owasp.version>12.2.0</plugin.owasp.version>
<plugin.cyclonedx.version>2.9.1</plugin.cyclonedx.version>
<!-- Nullability enforcement (NullAway via Error Prone) -->
<errorprone.version>2.36.0</errorprone.version>
<nullaway.version>0.12.7</nullaway.version>
<!-- Aether Style Guard (opt-in via -Pstyleguard) -->
<aether-style-guard.version>0.1.1</aether-style-guard.version>
<!--
Extra Error Prone flags appended to the -Xplugin:ErrorProne arg in the
styleguard profile. Empty by default. Override on the command line to
enable Error Prone's patch mode for bulk auto-fix:
mvn compile -Pstyleguard -pl aether-datafixers-api \
-Dstyleguard.extra.args="-XepPatchChecks:RequireThisPrefix,RequireParameterNullness,RequireFinalParameter,RequireMethodReturnNullness -XepPatchLocation:IN_PLACE"
-->
<styleguard.extra.args/>
<!-- QA configuration -->
<jacoco.skip>false</jacoco.skip>
<jacoco.coverage.minimum>0.75</jacoco.coverage.minimum>
<!-- CLI dependencies -->
<picocli.version>4.7.7</picocli.version>
<!-- Extra Ops dependencies -->
<snakeyaml.version>2.5</snakeyaml.version>
<!-- JMH Benchmark dependencies -->
<jmh.version>1.37</jmh.version>
</properties>
<name>Aether Datafixers :: Parent</name>
<description>Migration of data using forward patching via schema definitions.</description>
<url>https://software.splatgames.de/products/aether-datafixers/</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Erik Pförtner</name>
<id>SPLG-10000</id>
<email>splatcrafter@splatgames.de</email>
<organization>splatgames.software</organization>
<organizationUrl>https://software.splatgames.de</organizationUrl>
</developer>
</developers>
<organization>
<name>Splatgames.de Software</name>
<url>https://software.splatgames.de</url>
</organization>
<scm>
<url>https://github.com/aether-framework/aether-datafixers/</url>
<connection>scm:git:https://github.com/aether-framework/aether-datafixers.git</connection>
<developerConnection>scm:git:ssh://github.com:aether-framework/aether-datafixers.git</developerConnection>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>${jetbrains.annotations.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<!-- Jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.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>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Module dependencies -->
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-codec</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-testkit</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-cli</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-schema-tools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.splatgames.aether.datafixers</groupId>
<artifactId>aether-datafixers-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Picocli -->
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>${picocli.version}</version>
</dependency>
<!-- SnakeYAML -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
</dependency>
<!-- Jackson Dataformats -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-toml</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- SpotBugs Annotations -->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>${spotbugs.version}</version>
<scope>provided</scope>
</dependency>
<!-- JMH Benchmarks -->
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.compiler.version}</version>
<configuration>
<release>${maven.compiler.release}</release>
<parameters>true</parameters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${plugin.enforcer.version}</version>
<executions>
<execution>
<id>enforce-java</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[17,)</version>
</requireJavaVersion>
<requireMavenVersion>
<version>[3.9.5,)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${plugin.site.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.source.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.javadoc.version}</version>
<configuration>
<encoding>UTF-8</encoding>
<failOnError>true</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${plugin.gpg.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${plugin.surefire.version}</version>
<configuration>
<useModulePath>false</useModulePath>
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${plugin.failsafe.version}</version>
<configuration>
<useModulePath>false</useModulePath>
<failIfNoTests>false</failIfNoTests>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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>${plugin.javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
<failOnError>true</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${plugin.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<useAgent>${gpg.useAgent}</useAgent>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Integration Tests Profile: Run E2E and IT tests -->
<profile>
<id>it</id>
<properties>
<skipITs>false</skipITs>
</properties>
</profile>
<!-- Stress Tests Profile: Run stress and chaos tests -->
<profile>
<id>stress</id>
<properties>
<skipITs>false</skipITs>
<stress.threads>100</stress.threads>
<stress.duration.minutes>5</stress.duration.minutes>
<stress.operations.per.thread>1000</stress.operations.per.thread>
</properties>
</profile>
<!-- QA Profile: Code Quality and Security Analysis -->
<profile>
<id>qa</id>
<build>
<plugins>
<!-- JaCoCo Code Coverage -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${plugin.jacoco.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<skip>${jacoco.skip}</skip>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>${jacoco.coverage.minimum}</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<!-- SpotBugs Static Analysis -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${plugin.spotbugs.version}</version>
<configuration>
<effort>Max</effort>
<threshold>Medium</threshold>
<xmlOutput>true</xmlOutput>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Checkstyle Code Style -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${plugin.checkstyle.version}</version>
<configuration>
<configLocation>${maven.multiModuleProjectDirectory}/checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>false</failsOnError>
<failOnViolation>false</failOnViolation>
<violationSeverity>warning</violationSeverity>
<includeTestSourceDirectory>false</includeTestSourceDirectory>
<linkXRef>false</linkXRef>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- OWASP Dependency Check -->
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${plugin.owasp.version}</version>
<configuration>
<nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
<failBuildOnCVSS>7</failBuildOnCVSS>
<suppressionFiles>
<suppressionFile>${maven.multiModuleProjectDirectory}/dependency-check-suppressions.xml</suppressionFile>
</suppressionFiles>
<formats>
<format>HTML</format>
<format>JSON</format>
</formats>
</configuration>
</plugin>
<!-- CycloneDX SBOM Generation -->
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>${plugin.cyclonedx.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
<configuration>
<projectType>library</projectType>
<schemaVersion>1.5</schemaVersion>
<includeBomSerialNumber>true</includeBomSerialNumber>
<includeCompileScope>true</includeCompileScope>
<includeProvidedScope>true</includeProvidedScope>
<includeRuntimeScope>true</includeRuntimeScope>
<includeSystemScope>false</includeSystemScope>
<includeTestScope>false</includeTestScope>
<includeLicenseText>false</includeLicenseText>
<outputFormat>all</outputFormat>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Nullability Profile: NullAway via Error Prone -->
<!--
Activate with: mvn compile -Pnullability
Treats all unannotated reference types as @NotNull and fails the build
on any null-safety violation in the de.splatgames.aether.datafixers packages.
New code is automatically checked; legacy gaps surface as build errors.
-->
<profile>
<id>nullability</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.compiler.version}</version>
<configuration>
<source>${maven.compiler.release}</source>
<target>${maven.compiler.release}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<showWarnings>true</showWarnings>
<fork>true</fork>
<compilerArgs>
<arg>-XDcompilePolicy=simple</arg>
<arg>--should-stop=ifError=FLOW</arg>
<arg>-Xplugin:ErrorProne -XepDisableAllChecks -Xep:NullAway:ERROR -XepOpt:NullAway:AnnotatedPackages=de.splatgames.aether.datafixers</arg>
<!-- Required JVM exports for ErrorProne on JDK 17+ -->
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg>
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId>
<version>${errorprone.version}</version>
</path>
<path>
<groupId>com.uber.nullaway</groupId>
<artifactId>nullaway</artifactId>
<version>${nullaway.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Style Guard Profile: Aether Style Guard via Error Prone -->
<!--
Activate with: mvn compile -Pstyleguard
Enforces the five Aether Style Guard rules (this-prefix, parameter
nullness, final parameters, method return nullness, complete Javadoc)
as guard rails for AI-generated Java code.
WARNING: This is an opt-in profile that is NOT run by default. Enabling
it on the existing codebase will produce a large number of errors that
reflect legacy drift from the new rules. Recommended adoption path:
1. mvn compile -Pstyleguard -pl <single-module> (scope the blast radius)
2. mvn compile -Pstyleguard -DcompilerArgument="-XepPatchChecks:RequireThisPrefix,RequireParameterNullness,RequireFinalParameter,RequireMethodReturnNullness -XepPatchLocation:IN_PLACE"
(bulk auto-fix one module at a time)
3. Review the diff, commit, move to the next module
The Javadoc checkers do not currently ship an auto-fix; their
warnings/errors have to be addressed manually.
-->
<profile>
<id>styleguard</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.compiler.version}</version>
<configuration>
<source>${maven.compiler.release}</source>
<target>${maven.compiler.release}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<showWarnings>true</showWarnings>
<fork>true</fork>
<compilerArgs>
<arg>-XDcompilePolicy=simple</arg>
<arg>--should-stop=ifError=FLOW</arg>
<arg>-Xplugin:ErrorProne -XepDisableAllChecks -Xep:RequireThisPrefix:ERROR -Xep:RequireParameterNullness:ERROR -Xep:RequireFinalParameter:ERROR -Xep:RequireMethodReturnNullness:ERROR -Xep:RequireJavadocPresent:WARN -Xep:RequireJavadocComplete:ERROR -XepOpt:AetherStyleGuard:NotNull=org.jetbrains.annotations.NotNull -XepOpt:AetherStyleGuard:Nullable=org.jetbrains.annotations.Nullable -XepExcludedPaths:.*/target/generated-sources/.* ${styleguard.extra.args}</arg>
<!-- Required JVM exports for ErrorProne on JDK 17+ -->
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg>
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId>
<version>${errorprone.version}</version>
</path>
<path>
<groupId>de.splatgames.aether.styleguard.labs</groupId>
<artifactId>aether-style-guard</artifactId>
<version>${aether-style-guard.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>