pst-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.jmcleodfoss</groupId> <artifactId>pst-parent</artifactId> <version>1.1.2</version> </dependency>
<project> <modelVersion>4.0.0</modelVersion> <groupId>io.github.jmcleodfoss</groupId> <artifactId>pst-parent</artifactId> <version>1.1.2</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <url>https://io.github.com/Jmcleodfoss/pstreader</url> <description>Library for reading pst files, and some ancillary libraries, a Swing app, and a JSF web app.</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.scm.id>github</project.scm.id> </properties> <licenses> <license> <name>The MIT Licence</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>James McLeod</name> <email>jmcleodfoss@gmail.com</email> <organizationUrl>https://io.github.com/Jmcleodfoss</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/Jmcleodfoss/pstreader.git</connection> <developerConnection>scm:git:https://github.com/jmcleodfoss/pstreader.git</developerConnection> <url>https://github.com/Jmcleodfoss/pstreader</url> </scm> <profiles> <profile> <!-- Do all included modules by default --> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <modules> <module>explorer</module> <module>localebean</module> <module>pst</module> <module>pstExtractor</module> <module>swingutil</module> <module>util</module> <module>xml</module> </modules> </profile> <profile> <!-- Use Java 8 and its version of JavaFX --> <id>jdk-8</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>1.8></version> </jdk> </toolchains> </configuration> </plugin> </plugins> </build> </profile> <profile> <!-- Developer (private + protected + public) Javadoc --> <id>dev-doc</id> <activation> <activeByDefault>false</activeByDefault> </activation> <modules> <module>explorer</module> <module>localeBean</module> <module>pst</module> <module>pstExtractor</module> <module>swingutil</module> <module>util</module> <module>xml</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <show>private</show> <help>false</help> <reportOutputDirectory>${project.reporting.outputDirectory}</reportOutputDirectory> <destDir>javadoc-dev</destDir> </configuration> </plugin> </plugins> </build> </profile> <profile> <!-- Deploy to maven central via ossrh for the main library and the explorer application --> <id>deploy-ossrh</id> <activation> <activeByDefault>false</activeByDefault> </activation> <modules> <module>explorer</module> <!-- Skip localebean, which is only used by pstExtractor --> <module>pst</module> <!-- Skip pstExtractor web app, which is of limited use. --> <module>swingutil</module> <module>util</module> <module>xml</module> </modules> <!-- Deploy to Maven Central via ossrh --> <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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</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>3.2.0</version> <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>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-help-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>show-profiles</id> <phase>compile</phase> <goals> <goal>active-profiles</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <compilerArgs> <arg>-Xlint:all</arg> <arg>-XDcompilePolicy=simple</arg> <arg>-Xplugin:ErrorProne</arg> </compilerArgs> <source>11</source> <target>11</target> <annotationProcessorPaths> <path> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>2.4.0</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.0.0</version> <dependencies> <!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs --> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.0.4</version> </dependency> </dependencies> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <show>public</show> </configuration> <reportSets> <reportSet><!-- by default, id = "default" --> <reports><!-- select non-aggregate reports --> <report>javadoc</report> <report>test-javadoc</report> </reports> </reportSet> <reportSet><!-- aggregate reportSet, to define in poms having modules --> <id>aggregate</id> <inherited>false</inherited><!-- don't run aggregate in child modules --> <reports> <report>aggregate</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.6</version> <reportSets> <reportSet> <reports> <report>index</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>