Fixes javadoc typos
[mkjsf-moved-to-github.git] / pom.xml
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.6-SNAPSHOT</version>
6   <name>MasterKey JSF</name>
7   <packaging>jar</packaging>
8   <description>MKJSF - JavaServer Faces library for MasterKey</description>
9     <dependencies>
10     <dependency>
11       <groupId>javax</groupId>
12       <artifactId>javaee-api</artifactId>
13       <version>6.0</version>
14       <scope>provided</scope>
15     </dependency>
16
17     <!-- JSF 2 -->
18     <dependency>
19       <groupId>org.glassfish</groupId>
20       <artifactId>javax.faces</artifactId>
21       <version>2.1.21</version>
22     </dependency>
23     <dependency>
24       <groupId>javax.servlet.jsp.jstl</groupId>
25       <artifactId>javax.servlet.jsp.jstl-api</artifactId>
26       <version>1.2.1</version>      
27     </dependency>
28     <!-- Weld, Dependency Injection (CDI) -->
29     <dependency>
30       <groupId>org.jboss.weld.servlet</groupId>
31       <artifactId>weld-servlet</artifactId>
32       <version>1.1.10.Final</version>      
33     </dependency>    
34     <dependency>
35       <groupId>org.apache.httpcomponents</groupId>
36       <artifactId>httpclient</artifactId>
37       <version>4.2.3</version>
38     </dependency>
39     <!-- File upload -->
40     <dependency>
41       <groupId>org.apache.myfaces.tomahawk</groupId>
42       <artifactId>tomahawk20</artifactId>
43       <version>1.1.10</version>
44     </dependency>
45     <dependency>
46       <groupId>commons-io</groupId>
47       <artifactId>commons-io</artifactId>
48       <version>2.1</version>
49     </dependency>    
50     <dependency>
51       <groupId>com.indexdata</groupId>
52       <artifactId>masterkey-common</artifactId>
53       <version>0.1.10</version>
54     </dependency>
55   </dependencies>
56   <build>
57     <directory>target</directory>
58     <outputDirectory>target/classes</outputDirectory>
59     <sourceDirectory>src/main/java</sourceDirectory>
60     <resources>
61       <resource>
62         <directory>src</directory>
63         <excludes>          
64           <exclude>main/</exclude>
65           <exclude>*.java</exclude>
66         </excludes>
67       </resource>
68     </resources>
69     <plugins>
70       <plugin>
71         <artifactId>maven-compiler-plugin</artifactId>
72         <version>2.3.2</version>
73         <configuration>
74           <excludes>
75              <exclude>src/META-INF/</exclude>
76           </excludes>
77           <source>1.6</source>
78           <target>1.6</target>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-release-plugin</artifactId>
84         <version>2.2.2</version>
85         <configuration>
86           <preparationGoals>clean verify</preparationGoals>
87           <releaseProfiles>production</releaseProfiles>
88           <tagNameFormat>v@{project.version}</tagNameFormat>
89           <pushChanges>false</pushChanges>
90           <localCheckout>true</localCheckout>
91         </configuration>
92       </plugin>
93     </plugins>
94     <extensions>
95       <extension>
96         <groupId>org.apache.maven.wagon</groupId>
97         <artifactId>wagon-ssh</artifactId>
98         <version>1.0-beta-6</version>
99       </extension>
100       <extension>
101         <groupId>org.apache.maven.wagon</groupId>
102         <artifactId>wagon-ssh-external</artifactId>
103         <version>2.2</version>
104       </extension>
105     </extensions>
106   </build>
107   <distributionManagement>
108     <repository>
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>
113     </repository>
114     <site>
115       <id>id-website</id>
116       <url>scpexe://www.indexdata.com/var/www/software/mkjsf/</url>
117     </site>
118   </distributionManagement>  
119   <repositories>
120     <repository>
121       <id>id-maven-repo</id>
122       <url>http://maven.indexdata.com</url>
123     </repository>
124   </repositories>
125   <scm>
126     <connection>scm:git:ssh://git.indexdata.com:222/home/git/pub/mkjsf</connection>
127     <url>http://gitid.indexdata.com/?p=mkjsf.git</url>
128   </scm>
129   
130   <properties>
131     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
132   </properties>
133   
134 </project>