eclipse-pass-parent
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.pass</groupId> <artifactId>eclipse-pass-parent</artifactId> <version>1.12.0</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>org.eclipse.pass</groupId> <artifactId>eclipse-pass-parent</artifactId> <version>1.12.0</version> <packaging>pom</packaging> <name>Eclipse-PASS Parent</name> <description>Parent POM for Eclipse-PASS projects</description> <url>https://github.com/eclipse-pass/main</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Jim Martino</name> <email>jrm@jhu.edu</email> <organization>The Sheridan Libraries, Johns Hopkins University</organization> <organizationUrl>https://www.library.jhu.edu/</organizationUrl> </developer> <developer> <name>Mark Patton</name> <email>mpatton@jhu.edu</email> <organization>The Sheridan Libraries, Johns Hopkins University</organization> <organizationUrl>https://www.library.jhu.edu/</organizationUrl> </developer> <developer> <name>John Abrahams</name> <email>jabrah20@jhu.edu</email> <organization>The Sheridan Libraries, Johns Hopkins University</organization> <organizationUrl>https://www.library.jhu.edu/</organizationUrl> </developer> <developer> <name>Tim Sanders</name> <email>tsande16@jhu.edu</email> <organization>The Sheridan Libraries, Johns Hopkins University</organization> <organizationUrl>https://www.library.jhu.edu/</organizationUrl> </developer> <developer> <name>Russ Poetker</name> <email>rpoetke1@jhu.edu</email> <organization>The Sheridan Libraries, Johns Hopkins University</organization> <organizationUrl>https://www.library.jhu.edu/</organizationUrl> </developer> </developers> <modules><module>pass-core</module><module>pass-support</module></modules> <scm> <connection>scm:git:git://github.com/eclipse-pass/main.git</connection> <developerConnection>scm:git:ssh://github.com:eclipse-pass/main.git</developerConnection> <url>http://github.com/eclipse-pass/main/tree/main</url> <tag>HEAD</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- Plugin versions --> <build-helper-maven-plugin.version>3.5.0</build-helper-maven-plugin.version> <docker-maven-plugin.version>0.43.4</docker-maven-plugin.version> <maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version> <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <maven-failsafe-plugin.version>3.2.5</maven-failsafe-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-release-plugin.version>3.0.1</maven-release-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <maven-war-plugin.version>3.4.0</maven-war-plugin.version> <tidy-maven-plugin.version>1.2.0</tidy-maven-plugin.version> <checkstyle.version>8.41.1</checkstyle.version> <duraspace-codestyle.version>1.1.0</duraspace-codestyle.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <release>17</release> </configuration> </plugin> <!-- Used to validate all code style rules in source code using Checkstyle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <executions> <execution> <id>verify-style</id> <!-- Bind to verify so it runs after package & unit tests, but before install --> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <configLocation>duraspace-checkstyle/checkstyle.xml</configLocation> <suppressionsLocation>duraspace-checkstyle/checkstyle-suppressions.xml</suppressionsLocation> <inputEncoding>UTF-8</inputEncoding> <consoleOutput>true</consoleOutput> <logViolationsToConsole>true</logViolationsToConsole> <failOnViolation>true</failOnViolation> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> <dependencies> <dependency> <groupId>org.duraspace</groupId> <artifactId>codestyle</artifactId> <version>${duraspace-codestyle.version}</version> </dependency> <!-- Override dependencies to use latest version of checkstyle --> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tidy-maven-plugin</artifactId> <version>${tidy-maven-plugin.version}</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedDependencies> <searchTransitive>true</searchTransitive> <excludes> <exclude>commons-logging</exclude> <exclude>log4j</exclude> <exclude>com.springsource.org.apache.commons.logging</exclude> </excludes> </bannedDependencies> <requireMavenVersion> <version>[3.5.0,4.0.0)</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> <preparationGoals>clean install</preparationGoals> <releaseProfiles>release</releaseProfiles> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- Set this to true and the release will automatically proceed and sync to Central Repository will follow --> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <useAgent>true</useAgent> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <quiet>true</quiet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>${docker-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build-helper-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>