Assembla home | Assembla project page
 

root/authorization/trunk/pom.xml

Revision 84, 3.7 kB (checked in by restamon, 4 months ago)

General clean-up

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <groupId>org.restafarian</groupId>
7   <artifactId>authorization</artifactId>
8   <name>authorization</name>
9   <version>0.2</version>
10   <description>
11     The authorization.jar file contains all of the Java classes and resources
12     needed by other applications that interface with the Authorization System.
13   </description>
14
15   <parent>
16     <groupId>org.restafarian</groupId>
17     <artifactId>example-parent</artifactId>
18     <version>9</version>
19     <relativePath>../example-parent/pom.xml</relativePath>
20   </parent>
21
22   <developers>
23     <developer>
24       <id>restamon</id>
25       <name>The Restamon</name>
26       <email>restamon@restafarian.org</email>
27       <roles>
28         <role>Developer</role>
29       </roles>
30       <organization>Restafarian.org</organization>
31     </developer>
32   </developers>
33
34   <scm>
35     <connection>
36       scm:svn:http://svn2.assembla.com/svn/restafarian/authorization/
37     </connection>
38     <developerConnection>
39       scm:svn:http://svn2.assembla.com/svn/restafarian/authorization/
40     </developerConnection>
41     <url>http://trac2.assembla.com/restafarian/browser/authorization/</url>
42   </scm>
43
44   <pluginRepositories>
45     <pluginRepository>
46       <id>Codehaus Snapshots</id>
47       <url>http://snapshots.repository.codehaus.org/</url>
48     </pluginRepository>
49   </pluginRepositories>
50
51   <reporting>
52     <plugins>
53       <plugin>
54         <groupId>org.codehaus.mojo</groupId>
55         <artifactId>dashboard-maven-plugin</artifactId>
56       </plugin>
57       <plugin>
58         <artifactId>maven-javadoc-plugin</artifactId>
59       </plugin>
60       <plugin>
61         <groupId>org.codehaus.mojo</groupId>
62         <artifactId>jxr-maven-plugin</artifactId>
63       </plugin>
64       <plugin>
65         <artifactId>maven-surefire-plugin</artifactId>
66       </plugin>
67       <plugin>
68         <groupId>org.codehaus.mojo</groupId>
69         <artifactId>cobertura-maven-plugin</artifactId>
70       </plugin>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-pmd-plugin</artifactId>
74         <configuration>
75           <targetjdk>1.5</targetjdk>
76           <rulesets>
77             <ruleset>/rulesets/basic.xml</ruleset>
78             <ruleset>/rulesets/controversial.xml</ruleset>
79           </rulesets>
80           <format>xml</format>
81           <linkXref>true</linkXref>
82           <sourceEncoding>utf-8</sourceEncoding>
83           <minimumTokens>100</minimumTokens>
84         </configuration>
85       </plugin>
86       <plugin>
87         <groupId>org.apache.maven.plugins</groupId>
88         <artifactId>maven-checkstyle-plugin</artifactId>
89       </plugin>
90       <plugin>
91         <groupId>org.codehaus.mojo</groupId>
92         <artifactId>taglist-maven-plugin</artifactId>
93       </plugin>
94       <plugin>
95         <groupId>org.codehaus.mojo</groupId>
96         <artifactId>findbugs-maven-plugin</artifactId>
97       </plugin>
98     </plugins>
99   </reporting>
100
101   <dependencies>
102     <dependency>
103       <groupId>javax.servlet</groupId>
104       <artifactId>servlet-api</artifactId>
105       <version>2.4</version>
106       <scope>provided</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.restafarian</groupId>
110       <artifactId>core</artifactId>
111       <version>1.2</version>
112     </dependency>
113     <dependency>
114       <groupId>hibernate</groupId>
115       <artifactId>hibernate</artifactId>
116       <version>3.1rc2</version>
117     </dependency>
118   </dependencies>
119
120 </project>
Note: See TracBrowser for help on using the browser.