microbean-construct
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.microbean</groupId> <artifactId>microbean-construct</artifactId> <version>0.0.16</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.microbean</groupId> <artifactId>microbean-construct</artifactId> <version>0.0.16</version> <name>microBean™ Construct</name> <description>microBean™ Construct: Utility classes for modeling Java language constructs.</description> <inceptionYear>2024</inceptionYear> <url>https://microbean.github.io/microbean-construct</url> <organization> <name>microBean™</name> <url>http://microbean.systems/</url> </organization> <licenses> <license> <comments>The Apache License, Version 2.0</comments> <distribution>repo</distribution> <name>Apache License 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>ljnelson</id> <name>Laird Nelson</name> <email>ljnelson@gmail.com</email> <url>https://about.me/lairdnelson</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <scm> <connection>${scm.url}</connection> <developerConnection>${scm.url}</developerConnection> <url>https://github.com/microbean/microbean-construct/</url> <tag>v0.0.16</tag> </scm> <issueManagement> <system>Github</system> <url>https://github.com/microbean/microbean-construct/issues</url> </issueManagement> <distributionManagement> <site> <id>Github Pages</id> <name>microBean™ Construct Site</name> <url>https://microbean.github.io/microbean-construct/</url> </site> </distributionManagement> <properties> <java.util.logging.config.file>${project.basedir}/src/test/java/logging.properties</java.util.logging.config.file> <!-- maven-compiler-plugin properties --> <maven.compiler.release>21</maven.compiler.release> <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> <maven.compiler.showWarnings>true</maven.compiler.showWarnings> <!-- maven-javadoc-plugin properties --> <bottom><![CDATA[Copyright © ${project.inceptionYear}–{currentYear}, <a href="${project.organization.url}" target="_top">${project.organization.name}</a>. All rights reserved.]]></bottom> <doctitle><a href="${project.url}" target="_top"><span style="font-family:Lobster, cursive;">µb</span> ${project.artifactId}</a> ${project.version}</doctitle> <sourcetab>2</sourcetab> <!-- maven-release-plugin properties --> <goals>deploy</goals> <!-- See http://central.sonatype.org/pages/apache-maven.html#performing-a-release-deployment-with-the-maven-release-plugin --> <releaseProfiles>deployment</releaseProfiles> <scmCommentPrefix>[maven-release-plugin] [skip ci]</scmCommentPrefix> <tagNameFormat>v@{project.version}</tagNameFormat> <!-- maven-scm-publish-plugin properties; see https://maven.apache.org/plugins/maven-scm-publish-plugin/publish-scm-mojo.html --> <scmpublish.content>${project.reporting.outputDirectory}</scmpublish.content> <scmpublish.pubScmUrl>${project.scm.developerConnection}</scmpublish.pubScmUrl> <scmpublish.scm.branch>gh-pages</scmpublish.scm.branch> <!-- maven-site-plugin properties --> <maven.site.deploy.skip>true</maven.site.deploy.skip> <relativizeDecorationLinks>false</relativizeDecorationLinks> <!-- central-publishing-maven-plugin properties --> <deploymentName>${project.name} v${project.version}</deploymentName> <!-- Other properties --> <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF8</project.reporting.outputEncoding> <scm.url>scm:git:git@github.com:microbean/microbean-construct.git</scm.url> </properties> <dependencyManagement> <dependencies> <!-- BOM dependencies. --> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.13.2</version> <type>pom</type> <scope>import</scope> </dependency> <!-- Normal dependencies. --> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.5.0</version> <configuration> <filesets> <fileset> <directory>${basedir}</directory> <includes> <include>src/**/*~</include> <include>*~</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <compilerArgs> <arg>-Xlint:all</arg> <arg>-parameters</arg> </compilerArgs> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.4</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.6.1</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.1.4</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.3</version> <configuration> <docfilessubdirs>true</docfilessubdirs> </configuration> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.9.0</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.9.0</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>2.1.0</version> </plugin> <plugin> <artifactId>maven-scm-publish-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.21.0</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> </plugin> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.9.4.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</version> </plugin> <plugin> <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <version>3.4.0</version> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central.sonatype.com</publishingServerId> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>23</version> </requireJavaVersion> <requireMavenVersion> <version>3.9.9</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <properties> <!-- See https://junit.org/junit5/docs/snapshot/user-guide/#running-tests-build-maven-config-params --> <configurationParameters> junit.jupiter.execution.parallel.enabled=true junit.jupiter.execution.parallel.mode.default=concurrent </configurationParameters> </properties> <systemPropertyVariables> <java.util.logging.config.file>${java.util.logging.config.file}</java.util.logging.config.file> <project.build.directory>${project.build.directory}</project.build.directory> <project.build.testOutputDirectory>${project.build.testOutputDirectory}</project.build.testOutputDirectory> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <targetPath>META-INF</targetPath> <directory>${project.basedir}</directory> <includes> <include>LICENSE</include> </includes> </resource> </resources> </build> <reporting> <plugins> <!-- <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> --> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <reportSets> <reportSet> <reports> <report>javadoc-no-fork</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>deployment</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>