1 <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/xsd/maven-4.0.0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>com.indexdata</groupId>
4 <artifactId>mkjsf</artifactId>
5 <version>0.0.5</version>
6 <name>MasterKey JSF</name>
7 <packaging>jar</packaging>
8 <description>MKJSF - JavaServer Faces library for MasterKey</description>
11 <groupId>javax</groupId>
12 <artifactId>javaee-api</artifactId>
13 <version>6.0</version>
14 <scope>provided</scope>
19 <groupId>org.glassfish</groupId>
20 <artifactId>javax.faces</artifactId>
21 <version>2.1.21</version>
24 <groupId>javax.servlet.jsp.jstl</groupId>
25 <artifactId>javax.servlet.jsp.jstl-api</artifactId>
26 <version>1.2.1</version>
28 <!-- Weld, Dependency Injection (CDI) -->
30 <groupId>org.jboss.weld.servlet</groupId>
31 <artifactId>weld-servlet</artifactId>
32 <version>1.1.10.Final</version>
35 <groupId>org.apache.httpcomponents</groupId>
36 <artifactId>httpclient</artifactId>
37 <version>4.2.3</version>
41 <groupId>org.apache.myfaces.tomahawk</groupId>
42 <artifactId>tomahawk20</artifactId>
43 <version>1.1.10</version>
46 <groupId>commons-io</groupId>
47 <artifactId>commons-io</artifactId>
48 <version>2.1</version>
51 <groupId>com.indexdata</groupId>
52 <artifactId>masterkey-common</artifactId>
53 <version>0.1.10</version>
57 <directory>target</directory>
58 <outputDirectory>target/classes</outputDirectory>
59 <sourceDirectory>src/main/java</sourceDirectory>
62 <directory>src</directory>
64 <exclude>main/</exclude>
65 <exclude>*.java</exclude>
71 <artifactId>maven-compiler-plugin</artifactId>
72 <version>2.3.2</version>
75 <exclude>src/META-INF/</exclude>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-release-plugin</artifactId>
84 <version>2.2.2</version>
86 <preparationGoals>clean verify</preparationGoals>
87 <releaseProfiles>production</releaseProfiles>
88 <tagNameFormat>v@{project.version}</tagNameFormat>
89 <pushChanges>false</pushChanges>
90 <localCheckout>true</localCheckout>
96 <groupId>org.apache.maven.wagon</groupId>
97 <artifactId>wagon-ssh</artifactId>
98 <version>1.0-beta-6</version>
101 <groupId>org.apache.maven.wagon</groupId>
102 <artifactId>wagon-ssh-external</artifactId>
103 <version>2.2</version>
107 <distributionManagement>
109 <uniqueVersion>false</uniqueVersion>
110 <id>id-maven-repo</id>
111 <name>Index Data Maven Repository</name>
112 <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
116 <url>scpexe://www.indexdata.com/var/www/software/mkjsf/</url>
118 </distributionManagement>
121 <id>id-maven-repo</id>
122 <url>http://maven.indexdata.com</url>
126 <connection>scm:git:ssh://git.indexdata.com:222/home/git/pub/mkjsf</connection>
127 <url>http://gitid.indexdata.com/?p=mkjsf.git</url>
131 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>