bootsfaces
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.bootsfaces</groupId>
<artifactId>bootsfaces</artifactId>
<version>2.0.1</version>
</dependency><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>net.bootsfaces</groupId>
<artifactId>bootsfaces</artifactId>
<version>2.0.1</version>
<name>BootsFaces</name>
<description>TheCoder4EU</description>
<url>https://www.bootsfaces.net</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>BootsFaces Team</name>
<email>bootsfaces@thecoder4.eu</email>
<organization>TheCoder4EU</organization>
<organizationUrl>http://www.thecoder4.eu/</organizationUrl>
</developer>
<developer>
<name>Stephan Rauh</name>
<email>webmaster1@beyondjava.de</email>
<organization>BeyondJava.net</organization>
<organizationUrl>https://www.beyondjava.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:TheCoder4eu/BootsFaces-OSP.git</connection>
<developerConnection>scm:git:git@github.com:TheCoder4eu/BootsFaces-OSP.git</developerConnection>
<url>git@github.com:TheCoder4eu/BootsFaces-OSP.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyyMMdd-HH:mm:ss</maven.build.timestamp.format>
<!-- compiler plugin configuation -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.debug>true</maven.compiler.debug>
<maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel>
</properties>
<!-- DEPENDENCIES -->
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.faces</groupId>
<artifactId>jakarta.faces-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
<version>5.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
<artifactId>owasp-java-html-sanitizer</artifactId>
<version>20220608.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.1-jre</version>
</dependency>
</dependencies>
<!-- BUILD SECTION -->
<build>
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
<!--
This plugin's configuration is used to store Eclipse m2e settings only.
It has no influence on the Maven build itself.
-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>pl.allegro</groupId>
<artifactId>
grunt-maven-plugin
</artifactId>
<versionRange>
[1.5.0,)
</versionRange>
<goals>
<goal>grunt</goal>
<goal>
create-resources
</goal>
<goal>npm</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>copy-resources-java11</id>
<phase>process-resources</phase>
<goals>
<goal>resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes-java11</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<!-- Resource Plugin to handle resources for Java 17 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>copy-resources-java17</id>
<phase>process-resources</phase>
<goals>
<goal>resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes-java17</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>compile-java11</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<source>11</source>
<target>11</target>
<outputDirectory>${project.build.directory}/classes-java11</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>compile-java17</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<source>17</source>
<target>17</target>
<outputDirectory>${project.build.directory}/classes-java17</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifestEntries>
<Built-By>BootsFaces OSP Maven builder.</Built-By>
<Maven-Version>${maven.version}</Maven-Version>
<Created-By>${java.version} (${java.vendor} ${java.vm.version})</Created-By>
<Bundle-Name>BootsFaces</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Date>${maven.build.timestamp}</Bundle-Date>
<Implementation-Title>BootsFaces</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>TheCoder4.eu</Implementation-Vendor>
<Implementation-Vendor-Id>eu.thecoder4</Implementation-Vendor-Id>
<Implementation-URL>http://www.bootsfaces.net</Implementation-URL>
</manifestEntries>
</archive>
<excludes>
<exclude>rebel.xml</exclude>
<exclude>.gitignore</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>jar-java11</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>java11</classifier>
<classesDirectory>${project.build.directory}/classes-java11</classesDirectory>
<finalName>${project.build.finalName}</finalName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifestEntries>
<Built-By>BootsFaces OSP Maven builder.</Built-By>
<Maven-Version>${maven.version}</Maven-Version>
<Created-By>${java.version} (${java.vendor} ${java.vm.version})</Created-By>
<Bundle-Name>BootsFaces</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Date>${maven.build.timestamp}</Bundle-Date>
<Implementation-Title>BootsFaces</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>TheCoder4.eu</Implementation-Vendor>
<Implementation-Vendor-Id>eu.thecoder4</Implementation-Vendor-Id>
<Implementation-URL>http://www.bootsfaces.net</Implementation-URL>
</manifestEntries>
</archive>
<excludes>
<exclude>rebel.xml</exclude>
<exclude>.gitignore</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>jar-java11</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>java17</classifier>
<classesDirectory>${project.build.directory}/classes-java17</classesDirectory>
<finalName>${project.build.finalName}</finalName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.17</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java16</artifactId>
<version>1.0</version>
</signature>
</configuration>
</plugin>
</plugins>
<!-- resources -->
<resources>
<resource>
<directory>mavenResources/META-INF</directory>
<targetPath>META-INF</targetPath>
</resource>
<resource>
<directory>src/main/meta/META-INF</directory>
<targetPath>META-INF</targetPath>
</resource>
<resource>
<directory>licenses</directory>
<targetPath>META-INF/licenses</targetPath>
</resource>
</resources>
</build>
<!-- PROFILES SECTION -->
<profiles>
<profile>
<id>Mojarra2.2.12</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.2.18</version>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>MavenCentral</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.2.18</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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>
<configuration>
<failOnError>false</failOnError>
</configuration>
<version>3.0.1</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>3.0.1</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.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>geopossachs</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<distributionManagement>
<snapshotRepository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/geopossachs/BootsFaces-OSP</url>
</snapshotRepository>
<!--
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/geopossachs/BootsFaces-OSP</url>
</repository>
-->
</distributionManagement>
</profile>
</profiles>
<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>
</project>