Force maven build to assume UTF-8 encoded source files
[egit/fonseca.git] / jgit-maven / jgit / pom.xml
bloba64f53cfb4ffdc142ef97519e3523ba981b762a2
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 All rights reserved.
4 Redistribution and use in source and binary forms, with or
5 without modification, are permitted provided that the following
6 conditions are met:
8 Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
11 Redistributions in binary form must reproduce the above
12 copyright notice, this list of conditions and the following
13 disclaimer in the documentation and/or other materials provided
14 with the distribution.
16 Neither the name of the Git Development Community nor the
17 names of its contributors may be used to endorse or promote
18 products derived from this software without specific prior
19 written permission.
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
22 CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
23 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
26 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
31 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 -->
35 <project xmlns="http://maven.apache.org/POM/4.0.0"
36         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
37         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
38     <modelVersion>4.0.0</modelVersion>
39     <groupId>org.spearce</groupId>
40     <artifactId>jgit</artifactId>
41     <packaging>jar</packaging>
42     <version>0.4-SNAPSHOT</version>
43     <name>jgit</name>
44     <url>http://repo.or.cz/w/egit.git</url>
45     <mailingLists>
46         <mailingList>
47             <name>GIT Mailing List</name>
48             <post>git@vger.kernel.org</post>
49             <archive>http://marc.info/?l=git</archive>
50         </mailingList>
51     </mailingLists>
52     <description>Pure Java implementation of Git</description>
53     <developers>
54         <developer>
55             <name>Shawn O. Pearce</name>
56             <email>spearce@spearce.org</email>
57             <roles>
58                 <role>Maintainer</role>
59             </roles>
60         </developer>
61         <developer>
62             <name>Robin Rosenberg</name>
63             <email>robin.rosenberg@dewire.com</email>
64             <roles>
65                 <role>Maintainer</role>
66             </roles>
67         </developer>
68         <developer>
69             <name>Dave Watson</name>
70             <email>dwatson@mimvista.com</email>
71             <roles>
72                 <role>Developer</role>
73             </roles>
74         </developer>
75         <developer>
76             <name>Roger C. Soares</name>
77             <email>rogersoares@intelinet.com.br</email>
78             <roles>
79                 <role>Developer</role>
80             </roles>
81         </developer>
82         <developer>
83             <name>Marek Zawirski</name>
84             <email>marek.zawirski@gmail.com</email>
85             <roles>
86                 <role>Developer</role>
87             </roles>
88         </developer>
89         <developer>
90             <name>Charles O'Farrell</name>
91             <email>charleso@charleso.org</email>
92             <roles>
93                 <role>Contributor</role>
94             </roles>
95         </developer>
96         <developer>
97             <name>Imran M Yousuf</name>
98             <email>imyousuf@smartitengineering.com</email>
99             <organization>Smart IT Engineering</organization>
100             <roles>
101                 <role>Contributor</role>
102             </roles>
103         </developer>
104     </developers>
105     <licenses>
106         <license>
107             <name>3-clause (new-style) BSD license.</name>
108             <comments>
109                 All rights reserved.
110                 Redistribution and use in source and binary forms, with or
111                 without modification, are permitted provided that the following
112                 conditions are met:
114                 Redistributions of source code must retain the above copyright
115                 notice, this list of conditions and the following disclaimer.
117                 Redistributions in binary form must reproduce the above
118                 copyright notice, this list of conditions and the following
119                 disclaimer in the documentation and/or other materials provided
120                 with the distribution.
122                 Neither the name of the Git Development Community nor the
123                 names of its contributors may be used to endorse or promote
124                 products derived from this software without specific prior
125                 written permission.
127                 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
128                 CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
129                 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
130                 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
131                 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
132                 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
133                 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
134                 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
135                 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
136                 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
137                 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
138                 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
139                 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
140             </comments>
141         </license>
142     </licenses>
143     <build>
144         <sourceDirectory>../../org.spearce.jgit/src/</sourceDirectory>
145         <testResources>
146             <testResource>
147                 <directory>../../org.spearce.jgit.test/tst-rsrc/</directory>
148             </testResource>
149         </testResources>
150         <testSourceDirectory>../../org.spearce.jgit.test/tst/</testSourceDirectory>
151         <plugins>
152             <plugin>
153                 <artifactId>maven-compiler-plugin</artifactId>
154                 <version>2.0.2</version>
155                 <configuration>
156                     <source>1.5</source>
157                     <target>1.5</target>
158                     <encoding>UTF-8</encoding>
159                 </configuration>
160             </plugin>
161         </plugins>
162     </build>
163     <dependencies>
164         <dependency>
165             <groupId>junit</groupId>
166             <artifactId>junit</artifactId>
167             <version>3.8.1</version>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>com.jcraft</groupId>
172             <artifactId>jsch</artifactId>
173             <version>0.1.38</version>
174             <scope>compile</scope>
175         </dependency>
176     </dependencies>
177 </project>