bernard
authored
2012-01-24 16:59:20 +0000
1
2
3
4
5
6
7
8
9
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0"?>
<project>
<parent>
<groupId> org.richfaces.sandbox</groupId>
<artifactId> ui</artifactId>
<version> 3.3.4-SNAPSHOT</version>
</parent>
<modelVersion> 4.0.0</modelVersion>
<groupId> org.richfaces.sandbox.ui</groupId>
<artifactId> notify</artifactId>
<name> notify</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>
</executions>
<configuration>
<library>
<prefix> org.richfaces.sandbox.ui</prefix>
<taglib>
<shortName> notify</shortName>
<uri> http://richfaces.org/sandbox/notify</uri>
</taglib>
</library>
</configuration>
</plugin>
<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>
</plugins>
</build>
<dependencies>
<dependency>
<groupId> org.richfaces.framework</groupId>
<artifactId> richfaces-impl</artifactId>
<version> ${project.version}</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding> UTF-8</project.build.sourceEncoding>
</properties>
bernard
authored
2012-01-24 17:19:45 +0000
65
66
67
68
69
70
71
<scm>
<developerConnection> scm:svn:https://it-crowd.com.pl/svn/richfaces/trunk/ui/notify</developerConnection>
<url> https://it-crowd.com.pl/svn/schoolmanager/</url>
<tag> scm:svn:https://it-crowd.com.pl/svn/richfaces/trunk</tag>
</scm>
bernard
authored
2012-01-24 16:59:20 +0000
72
<distributionManagement>
bernard
authored
2012-01-24 17:19:45 +0000
73
74
75
76
77
<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
2012-01-24 16:59:20 +0000
78
<snapshotRepository>
bernard
authored
2012-01-24 17:19:45 +0000
79
80
81
<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
2012-01-24 16:59:20 +0000
82
83
84
85
</snapshotRepository>
</distributionManagement>
</project>