First version of chimney added
[paraphernalia.git] / pom.xml
blob82c78c6b916dd331f00bf29b36003ed063a95cb2
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <groupId>com.dsnine.paraphernalia</groupId>
6         <artifactId>paraphernalia</artifactId>
7         <packaging>pom</packaging>
8         <version>1.0-SNAPSHOT</version>
9         <name>Paraphernalia</name>
10         <url>http://paraphernalia.dsnine.com</url>
11         <modules>
12             <module>paraphernalia-core</module>
13             <module>paraphernalia-chimney</module>
14         </modules>
15         <developers>
16             <developer>
17                 <id>dmaehl</id>
18                 <name>Dominik Maehl</name>
19                 <email>emissary@dsnine.com</email>
20                 <timezone>+1</timezone>
21             </developer>
22         </developers>
23         <description>
24             Paraphernalia is a collection of often-needed functionality with the goal of simplicity and hassle-free use
25         </description>
26         <licenses>
27             <license>
28                 <name>GNU Lesser General Public License Version 3</name>
29                 <url>http://www.gnu.org/licenses/lgpl.txt</url>
30                 <distribution>repo</distribution>
31             </license>
32         </licenses>
33         <build>
34                 <plugins>
35                         <plugin>
36                                 <groupId>org.apache.maven.plugins</groupId>
37                                 <artifactId>maven-compiler-plugin</artifactId>
38                                 <configuration>
39                                         <source>1.5</source>
40                                         <target>1.5</target>
41                                 </configuration>
42                         </plugin>
43                         <plugin>
44                                 <groupId>org.apache.maven.plugins</groupId>
45                                 <artifactId>maven-eclipse-plugin</artifactId>
46                                 <configuration>
47                                         <downloadSources>true</downloadSources>
48                                 </configuration>
49                         </plugin>
50                         <plugin>
51                                 <groupId>org.apache.maven.plugins</groupId>
52                                 <artifactId>maven-surefire-plugin</artifactId>
53                                 <configuration>
54                                         <skip>true</skip>
55                                 </configuration>
56                         </plugin>
57                 </plugins>
58         </build>
59 </project>