rewrite-config-prettyfaces
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-config-prettyfaces</artifactId> <version>10.0.2.Final</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/maven-v4_0_0.xsd"> <parent> <artifactId>rewrite-parent</artifactId> <groupId>org.ocpsoft.rewrite</groupId> <version>10.0.2.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>rewrite-config-prettyfaces</artifactId> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <artifactSet> <includes> <include>commons-digester</include> <include>commons-beanutils</include> <include>commons-logging</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>org.ocpsoft.shade.org.apache.commons</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <classpathDependencyExcludes>jakarta.faces:jakarta.faces-api</classpathDependencyExcludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-api</artifactId> <version>10.0.2.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-api-el</artifactId> <version>10.0.2.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-api-servlet</artifactId> <version>10.0.2.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-annotations-impl</artifactId> <version>10.0.2.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-integration-faces</artifactId> <version>10.0.2.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>6.0.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.faces</groupId> <artifactId>jakarta.faces-api</artifactId> <version>4.0.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <version>5.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet.jsp</groupId> <artifactId>jakarta.servlet.jsp-api</artifactId> <version>3.1.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> <version>3.0.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.ocpsoft.rewrite</groupId> <artifactId>rewrite-test-harness</artifactId> <version>10.0.2.Final</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>rewrite-test-base</artifactId> <groupId>org.ocpsoft.rewrite</groupId> </exclusion> <exclusion> <artifactId>slf4j-simple</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>okhttp</artifactId> <groupId>com.squareup.okhttp3</groupId> </exclusion> <exclusion> <artifactId>logging-interceptor</artifactId> <groupId>com.squareup.okhttp3</groupId> </exclusion> <exclusion> <artifactId>shrinkwrap-resolver-api</artifactId> <groupId>org.jboss.shrinkwrap.resolver</groupId> </exclusion> <exclusion> <artifactId>shrinkwrap-resolver-api-maven</artifactId> <groupId>org.jboss.shrinkwrap.resolver</groupId> </exclusion> <exclusion> <artifactId>shrinkwrap-resolver-impl-maven</artifactId> <groupId>org.jboss.shrinkwrap.resolver</groupId> </exclusion> <exclusion> <artifactId>arquillian-junit-container</artifactId> <groupId>org.jboss.arquillian.junit</groupId> </exclusion> <exclusion> <artifactId>arquillian-drone-webdriver</artifactId> <groupId>org.jboss.arquillian.extension</groupId> </exclusion> <exclusion> <artifactId>arquillian-drone-webdriver-depchain</artifactId> <groupId>org.jboss.arquillian.extension</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <version>4.0.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.faces</artifactId> <version>4.0.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jakarta.annotation-api</artifactId> <groupId>jakarta.annotation</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.6.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>6.0.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>micrometer-observation</artifactId> <groupId>io.micrometer</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>6.0.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <version.beanutils>1.9.4</version.beanutils> <version.digester>2.0</version.digester> </properties> </project>