Blame view

pom.xml 3.34 KB
bernard authored
1
<?xml version="1.0"?>
bernard authored
2 3
<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">
bernard authored
4 5 6 7 8 9 10

    <parent>
		<artifactId>ui</artifactId>
		<groupId>org.richfaces</groupId>
		<version>3.3.3.Final</version>
	</parent>
bernard authored
11 12 13
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.richfaces.sandbox.ui</groupId>
    <artifactId>notify</artifactId>
bernard authored
14
    <version>3.3.4-SNAPSHOT</version>
bernard authored
15
    <name>notify</name>
bernard authored
16
bernard authored
17 18 19 20 21
    <build>
        <plugins>
            <plugin>
                <groupId>org.richfaces.cdk</groupId>
                <artifactId>maven-cdk-plugin</artifactId>
bernard authored
22
                <version>${richfaces.version}</version>
bernard authored
23 24 25 26 27 28 29 30 31 32
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <library>
bernard authored
33
                        <prefix>org.richfaces.sandbox.ui</prefix>
bernard authored
34 35
                        <taglib>
                            <shortName>notify</shortName>
bernard authored
36
                            <uri>http://richfaces.org/sandbox/notify</uri>
bernard authored
37 38 39 40
                        </taglib>
                    </library>
                </configuration>
            </plugin>
bernard authored
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <inherited>true</inherited>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
bernard authored
58 59 60 61 62 63
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.richfaces.framework</groupId>
            <artifactId>richfaces-impl</artifactId>
bernard authored
64
            <version>${richfaces.version}</version>
bernard authored
65 66
        </dependency>
    </dependencies>
bernard authored
67
bernard authored
68 69
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
bernard authored
70
        <richfaces.version>3.3.3.Final</richfaces.version>
bernard authored
71
    </properties>
bernard authored
72 73 74

    <scm>
        <developerConnection>scm:svn:https://it-crowd.com.pl/svn/richfaces/trunk/ui/notify</developerConnection>
bernard authored
75
        <url>https://it-crowd.com.pl/svn/schoolmanager</url>
bernard authored
76 77 78
        <tag>scm:svn:https://it-crowd.com.pl/svn/richfaces/trunk</tag>
    </scm>
bernard authored
79
    <distributionManagement>
bernard authored
80 81 82 83 84
        <repository>
            <id>it-crowd.com.pl</id>
            <name>IT Crowd Company Internal Repository</name>
            <url>http://artifactory.it-crowd.com.pl/libs-release-local</url>
        </repository>
bernard authored
85
        <snapshotRepository>
bernard authored
86 87 88
            <id>it-crowd.com.pl</id>
            <name>IT Crowd Company Internal Repository</name>
            <url>http://artifactory.it-crowd.com.pl/libs-snapshot-local</url>
bernard authored
89
        </snapshotRepository>
bernard authored
90 91
    </distributionManagement>
bernard authored
92
</project>