pom.xml 3.09 KB
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>ui</artifactId>
        <groupId>org.richfaces.sandbox</groupId>
        <version>3.3.3.Final</version>
    </parent>
    <groupId>org.richfaces.sandbox.ui</groupId>
    <artifactId>schedule</artifactId>
    <name>schedule</name>
    <build>
        <plugins>
            <plugin>
                <groupId>org.richfaces.cdk</groupId>
                <artifactId>maven-cdk-plugin</artifactId>
                <version>${project.version}</version>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>generate-test-sources</id>
                        <phase>generate-test-sources</phase>
                        <goals>
                            <goal>generate-tests</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <library>
                        <prefix>org.richfaces.ui</prefix>
                        <taglib>
                            <shortName>schedule</shortName>
                        </taglib>
                    </library>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <systemProperties>
                        <property>
                            <name>displayedDaysForMonthViewCalculationTestData</name>
                            <value>${basedir}/src/test/resources/displayedDaysForMonthViewCalculationTestData.txt
                            </value>
                        </property>
                        <property>
                            <name>displayedDaysForWeekViewCalculationTestData</name>
                            <value>${basedir}/src/test/resources/displayedDaysForWeekViewCalculationTestData.txt</value>
                        </property>
                        <property>
                            <name>displayedDaysForDayViewCalculationTestData</name>
                            <value>${basedir}/src/test/resources/displayedDaysForDayViewCalculationTestData.txt</value>
                        </property>
                    </systemProperties>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.richfaces.framework</groupId>
            <artifactId>richfaces-impl</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>
</project>