java-composer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.soabase.java-composer</groupId> <artifactId>java-composer</artifactId> <version>1.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>io.soabase.java-composer</groupId> <artifactId>java-composer</artifactId> <version>1.1</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <jdk-version>17</jdk-version> <maven-compiler-plugin-version>3.8.1</maven-compiler-plugin-version> <maven-source-plugin-version>3.2.0</maven-source-plugin-version> <maven-install-plugin-version>2.5.2</maven-install-plugin-version> <maven-deploy-plugin-version>2.8.2</maven-deploy-plugin-version> <maven-gpg-plugin-version>1.6</maven-gpg-plugin-version> <maven-javadoc-plugin-version>3.1.1</maven-javadoc-plugin-version> <maven-clean-plugin-version>3.1.0</maven-clean-plugin-version> <maven-shade-plugin-version>3.2.1</maven-shade-plugin-version> <maven-release-plugin-version>2.5.3</maven-release-plugin-version> <maven-jar-plugin-version>3.2.0</maven-jar-plugin-version> <maven-surefire-plugin-version>3.0.0-M5</maven-surefire-plugin-version> <junit-version>4.13.2</junit-version> <truth-version>1.4.2</truth-version> <jimfs-version>1.3.0</jimfs-version> <mockito-version>4.11.0</mockito-version> <ecj-version>4.6.1</ecj-version> <compile-testing.version>0.21.0</compile-testing.version> </properties> <name>Java Composer</name> <description>Fork of JavaPoet with updates for post-Java 8</description> <url>https://github.com/randgalt/java-composer</url> <inceptionYear>2024</inceptionYear> <organization> <name>Java Composer</name> <url>https://github.com/Randgalt/java-composer</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Jordan Zimmerman</name> <email>jordan@jordanzimmerman.com</email> <timezone>-5</timezone> <url>https://github.com/randgalt/</url> <roles> <role>Author</role> </roles> </developer> </developers> <scm> <url>https://github.com/randgalt/java-composer</url> <connection>scm:git:https://github.com/randgalt/java-composer.git</connection> <developerConnection>scm:git:git@github.com:randgalt/java-composer.git</developerConnection> <tag>java-composer-1.1</tag> </scm> <issueManagement> <system>Github</system> <url>https://github.com/randgalt/java-composer/issues</url> </issueManagement> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus Staging</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>org.eclipse.jdt.core.compiler</groupId> <artifactId>ecj</artifactId> <version>${ecj-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> <version>${jimfs-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.testing.compile</groupId> <artifactId>compile-testing</artifactId> <version>${compile-testing.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>${truth-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit-version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin-version}</version> <configuration> <release>${jdk-version}</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin-version}</version> <configuration> <createChecksum>true</createChecksum> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin-version}</version> <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>${maven-javadoc-plugin-version}</version> <configuration> <failOnError>false</failOnError> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin-version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>java-composer-@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin-version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>oss</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <configuration> <passphrase>${gpg.passphrase}</passphrase> <useAgent>true</useAgent> </configuration> <executions> <execution> <id>gpg</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>