gooddata-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gooddata</groupId> <artifactId>gooddata-parent</artifactId> <version>4.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ (C) 2017 GoodData Corporation. ~ This source code is licensed under the BSD-style license found in the ~ LICENSE.txt file in the root directory of this source tree. --> <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.gooddata</groupId> <artifactId>gooddata-parent</artifactId> <version>4.0.0</version> <packaging>pom</packaging> <name>GoodData OSS Parent</name> <url>http://central.sonatype.org/pages/ossrh-guide.html</url> <description>Helps GoodData open source Maven projects to be released into the public Central repository</description> <properties> <targetJavaRelease>17</targetJavaRelease> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl> <maven.build.timestamp.format>yyyy</maven.build.timestamp.format> <currentYear>${maven.build.timestamp}</currentYear> <arguments /> <minimal.required.maven.version>3.5.4</minimal.required.maven.version> <failOnUndeclaredDependencies>true</failOnUndeclaredDependencies> </properties> <scm> <connection>scm:git:git@github.com:gooddata/gooddata-parent.git</connection> <developerConnection>scm:git:git@github.com:gooddata/gooddata-parent.git</developerConnection> <url>https://github.com/gooddata/gooddata-parent</url> <tag>gooddata-parent-4.0.0</tag> </scm> <licenses> <license> <name>BSD License</name> <url>http://opensource.org/licenses/BSD-3-Clause</url> </license> </licenses> <developers> <developer> <name>Martin Caslavsky</name> </developer> <developer> <name>Libor Rysavy</name> </developer> <developer> <name>Jiri Mikulasek</name> </developer> </developers> <repositories> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>${sonatypeOssDistMgmtSnapshotsUrl}</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>${sonatypeOssDistMgmtSnapshotsUrl}</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <!-- use "-Denforcer.skip=true" if you need to build with unstable changes during development --> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>17</version> </requireJavaVersion> <requireMavenVersion> <version>${minimal.required.maven.version}</version> </requireMavenVersion> </rules> <fail>true</fail> <failFast>true</failFast> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>${targetJavaRelease}</release> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <fork>true</fork> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Name>com/gooddata</Name> <Specification-Title>${project.description}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>GoodData</Specification-Vendor> <Implementation-Title>${project.description}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>GoodData</Implementation-Vendor> <Implementation-Vendor-Id>com.gooddata</Implementation-Vendor-Id> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>analyze</id> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>${failOnUndeclaredDependencies}</failOnWarning> <ignoreNonCompile>true</ignoreNonCompile> <ignoredUnusedDeclaredDependencies> <dependency>:::</dependency> </ignoredUnusedDeclaredDependencies> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>${targetJavaRelease}</source> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <!-- To add missing license use: mvn com.mycila:license-maven-plugin:3.0:format --> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <inlineHeader>(C) ${currentYear} GoodData Corporation. This source code is licensed under the BSD-style license found in the LICENSE.txt file in the root directory of this source tree. </inlineHeader> <failIfMissing>true</failIfMissing> <failIfUnknown>true</failIfUnknown> <skipExistingHeaders>true</skipExistingHeaders> <properties> <currentYear>${currentYear}</currentYear> </properties> <includes> <include>src/**/*.java</include> <include>src/**/*.scala</include> <include>src/**/*.groovy</include> <include>src/**/*.kt</include> </includes> <mapping> <java>SLASHSTAR_STYLE</java> <scala>SLASHSTAR_STYLE</scala> <groovy>SLASHSTAR_STYLE</groovy> <kt>SLASHSTAR_STYLE</kt> </mapping> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <!-- Using fixed plugin versions because of build's backward compatibility --> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-api</artifactId> <version>1.13.0</version> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-providers-standard</artifactId> <version>1.13.0</version> <type>pom</type> </dependency> </dependencies> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>${arguments} -Psonatype-oss-release</arguments> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.4.0</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.12.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.10</version> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.7.0</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.12.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.3</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</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-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>