java-record-enhancer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.namics.oss.magnolia</groupId> <artifactId>java-record-enhancer</artifactId> <version>0.1.5</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>com.namics.oss.magnolia</groupId> <artifactId>java-record-enhancer</artifactId> <packaging>pom</packaging> <version>0.1.5</version> <name>${project.artifactId}</name> <url>https://github.com/merkle-open/java-record-enhancer</url> <description>Processor that automatically generate companion code (builder, withers, etc.) for standard Java Record</description> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Merkle Magnolia</name> <email>magnolia@merkle.com</email> <organization>Merkle DACH</organization> <organizationUrl>https://merkleinc.ch</organizationUrl> </developer> </developers> <scm> <url>https://github.com/merkle-open/java-record-enhancer</url> <connection>scm:git:git@github.com:merkle-open/java-record-enhancer.git</connection> <developerConnection>scm:git:git@github.com:merkle-open/java-record-enhancer.git</developerConnection> </scm> <modules> <module>java-record-enhancer-processor</module> <module>java-record-enhancer-example</module> </modules> <properties> <javaVersion>17</javaVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyy-MM-dd-z-HH-mm-ss</maven.build.timestamp.format> <git.build.time>${maven.build.timestamp}</git.build.time> <maven.deploy.skip>true</maven.deploy.skip> <mvn.compiler.plugin.version>3.11.0</mvn.compiler.plugin.version> <mvn.source.plugin.version>3.3.0</mvn.source.plugin.version> <mvn.javadoc.version>3.5.0</mvn.javadoc.version> <mvn.gpg.plugin.version>3.0.1</mvn.gpg.plugin.version> <mvn.nexus-staging.plugin.version>1.6.13</mvn.nexus-staging.plugin.version> <google.auto-service.version>1.1.1</google.auto-service.version> <record.builder.version>37</record.builder.version> <javaparser.core.version>3.25.10</javaparser.core.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>${google.auto-service.version}</version> </dependency> <dependency> <groupId>io.soabase.record-builder</groupId> <artifactId>record-builder-processor</artifactId> <version>${record.builder.version}</version> </dependency> <dependency> <groupId>com.github.javaparser</groupId> <artifactId>javaparser-core</artifactId> <version>${javaparser.core.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${mvn.compiler.plugin.version}</version> <configuration> <release>${javaVersion}</release> </configuration> </plugin> </plugins> </build> <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> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${mvn.source.plugin.version}</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>${mvn.javadoc.version}</version> <configuration> <failOnError>false</failOnError> </configuration> <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>${mvn.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Prevent `gpg` from using pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${mvn.nexus-staging.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> <executions> <execution> <id>deploy-to-sonatype</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>