Blame view

pom.xml 3.54 KB
bernard authored
1
<?xml version="1.0" encoding="UTF-8"?>
bernard authored
2 3
<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"
bernard authored
4 5 6 7 8
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>ui</artifactId>
        <groupId>org.richfaces.sandbox</groupId>
bernard authored
9
        <version>3.3.4-SNAPSHOT</version>
bernard authored
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    </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>
bernard authored
40
                            <uri>http://richfaces.org/sandbox/schedule</uri>
bernard authored
41 42 43 44 45 46 47 48 49 50 51
                        </taglib>
                    </library>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <systemProperties>
                        <property>
                            <name>displayedDaysForMonthViewCalculationTestData</name>
bernard authored
52 53
                            <value>${basedir}/src/test/resources/displayedDaysForMonthViewCalculationTestData.txt
                            </value>
bernard authored
54 55 56 57 58 59 60 61 62 63 64 65 66 67
                        </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>
bernard authored
68 69 70
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
bernard authored
71 72 73 74 75 76 77
    <dependencies>
        <dependency>
            <groupId>org.richfaces.framework</groupId>
            <artifactId>richfaces-impl</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>
bernard authored
78 79
    <distributionManagement>
        <repository>
bernard authored
80
            <id>bernard.labno.pl</id>
bernard authored
81 82 83 84 85
            <name>MyCo Internal Repository</name>
            <url>http://bernard.labno.pl/artifactory/libs-release-local</url>
        </repository>
    </distributionManagement>
bernard authored
86
</project>