primefaces-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces-parent</artifactId> <version>15.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.primefaces</groupId> <artifactId>primefaces-parent</artifactId> <packaging>pom</packaging> <version>15.0.4</version> <name>PrimeFaces Parent</name> <url>https://www.primefaces.org</url> <description> <![CDATA[PrimeFaces is one of the most popular UI libraries in Java EE Ecosystem and widely used by software companies, world renowned brands, banks, financial institutions, insurance companies, universities and more.]]> </description> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/primefaces/primefaces/issues</url> </issueManagement> <scm> <connection>scm:git:https://github.com/primefaces/primefaces.git</connection> <developerConnection>scm:git:https://github.com/primefaces/primefaces.git</developerConnection> <url>https://github.com/primefaces/primefaces</url> </scm> <developers> <developer> <id>cagatay.civici</id> <name>Cagatay Civici</name> </developer> <developer> <id>tandraschko</id> <name>Thomas Andraschko</name> </developer> <developer> <id>sincan.mert</id> <name>Mert Sincan</name> </developer> <developer> <id>Rapster</id> <name>Sébastien Lepage</name> </developer> <developer> <id>melloware</id> <name>Emil Lefkof</name> </developer> <developer> <id>christophs78</id> <name>Christoph Straßer</name> </developer> <developer> <id>jepsar</id> <name>Jasper de Vries</name> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <build.output>target</build.output> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <junit.version>5.11.4</junit.version> <poi.version>5.4.0</poi.version> <jacoco.version>0.8.12</jacoco.version> <sonar.skip>true</sonar.skip> <sonar.coverage.jacoco.xmlReportPaths>../primefaces-coverage/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> <npm.token/> <npm.username/> <npm.password/> <npm.email/> </properties> <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> <modules> <module>primefaces-themes</module> <module>primefaces</module> <module>primefaces-showcase</module> <module>primefaces-selenium</module> <module>primefaces-integration-tests</module> <module>primefaces-integration-tests-jakarta</module> <module>primefaces-cli</module> <module>primefaces-coverage</module> </modules> <build> <directory>${build.output}</directory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <proc>full</proc> <!-- see: https://github.com/projectlombok/lombok/issues/3752 --> </configuration> <executions> <execution> <id>default-compile</id> <configuration> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </execution> <execution> <id>default-testCompile</id> <configuration> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <sourcepath>${basedir}/src/main/java;</sourcepath> <doclint>none</doclint> <excludePackageNames>org.primefaces.shaded.*</excludePackageNames> </configuration> <executions> <execution> <id>attach-docs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <propertiesEncoding>${project.build.sourceEncoding}</propertiesEncoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.4.0</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.6</version> <configuration> <licenseSets> <licenseSet> <header>${project.basedir}/conf/header.txt</header> <includes> <include>src/main/java/**</include> <include>src/test/java/**</include> </includes> </licenseSet> </licenseSets> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.6.0</version> <configuration> <consoleOutput>true</consoleOutput> <failOnViolation>true</failOnViolation> <includeResources>false</includeResources> </configuration> <executions> <execution> <id>checkstyle</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <includeTestSourceDirectory>false</includeTestSourceDirectory> <configLocation>/conf/checkstyle.xml</configLocation> </configuration> </execution> <execution> <id>checkstyle-tests</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <includeTestSourceDirectory>true</includeTestSourceDirectory> <configLocation>/conf/checkstyle-tests.xml</configLocation> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>10.12.3</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</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.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>vscode-ide</id> <activation> <property><name>m2e.version</name></property> </activation> <properties> <build.output>target-ide</build.output> </properties> </profile> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> <configuration> <formats> <format>XML</format> <format>HTML</format> </formats> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.tomee</groupId> <artifactId>javaee-api</artifactId> <version>8.0-6</version> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.faces</artifactId> <version>2.3.21</version> </dependency> <dependency> <groupId>com.googlecode.owasp-java-html-sanitizer</groupId> <artifactId>owasp-java-html-sanitizer</artifactId> <version>20240325.1</version> </dependency> <!-- Data Exporter --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>com.github.librepdf</groupId> <artifactId>openpdf</artifactId> <version>1.4.2</version> </dependency> <!-- FeedReader --> <dependency> <groupId>com.apptasticsoftware</groupId> <artifactId>rssreader</artifactId> <version>3.9.1</version> </dependency> <!-- File Upload --> <dependency> <groupId>org.overviewproject</groupId> <artifactId>mime-types</artifactId> <version>2.0.0</version> </dependency> <!-- Barcode --> <dependency> <groupId>uk.org.okapibarcode</groupId> <artifactId>okapibarcode</artifactId> <version>0.5.0</version> <exclusions> <exclusion> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> </exclusion> </exclusions> </dependency> <!-- JUnit --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> </dependency> </dependencies> </dependencyManagement> </project>