Assembla home | Assembla project page
 

root/core/trunk/pom.xml

Revision 162, 7.1 kB (checked in by restamon, 2 months ago)

Simple Velocity service

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>org.restafarian</groupId>
5   <artifactId>core</artifactId>
6   <name>Core Components</name>
7   <version>1.2</version>
8   <description>
9     The restafarian.org core components include the basic building blocks used
10     by all of the other restafarian.org projects.
11   </description>
12
13   <parent>
14     <groupId>org.restafarian</groupId>
15     <artifactId>example-parent</artifactId>
16     <version>9</version>
17     <relativePath>../example-parent/pom.xml</relativePath>
18   </parent>
19
20   <developers>
21     <developer>
22       <id>restamon</id>
23       <name>The Restamon</name>
24       <email>restamon@restafarian.org</email>
25       <roles>
26         <role>Developer</role>
27       </roles>
28       <organization>Restafarian.org</organization>
29     </developer>
30   </developers>
31
32   <scm>
33     <connection>
34       scm:svn:http://svn2.assembla.com/svn/restafarian/core/
35     </connection>
36     <developerConnection>
37       scm:svn:http://svn2.assembla.com/svn/restafarian/core/
38     </developerConnection>
39     <url>http://trac2.assembla.com/restafarian/browser/core/</url>
40   </scm>
41
42   <pluginRepositories>
43     <pluginRepository>
44       <id>Codehaus Snapshots</id>
45       <url>http://snapshots.repository.codehaus.org/</url>
46       <snapshots>
47         <enabled>true</enabled>
48       </snapshots>
49       <releases>
50         <enabled>true</enabled>
51       </releases>
52     </pluginRepository>
53   </pluginRepositories>
54
55   <reporting>
56     <plugins>
57       <plugin>
58         <groupId>org.codehaus.mojo</groupId>
59         <artifactId>dashboard-maven-plugin</artifactId>
60       </plugin>
61       <plugin>
62         <artifactId>maven-javadoc-plugin</artifactId>
63       </plugin>
64       <plugin>
65         <groupId>org.codehaus.mojo</groupId>
66         <artifactId>jxr-maven-plugin</artifactId>
67       </plugin>
68       <plugin>
69         <artifactId>maven-surefire-plugin</artifactId>
70       </plugin>
71       <plugin>
72         <groupId>org.codehaus.mojo</groupId>
73         <artifactId>cobertura-maven-plugin</artifactId>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-pmd-plugin</artifactId>
78         <configuration>
79           <targetjdk>1.5</targetjdk>
80           <rulesets>
81             <ruleset>/rulesets/basic.xml</ruleset>
82             <ruleset>/rulesets/controversial.xml</ruleset>
83           </rulesets>
84           <format>xml</format>
85           <linkXref>true</linkXref>
86           <sourceEncoding>utf-8</sourceEncoding>
87           <minimumTokens>100</minimumTokens>
88         </configuration>
89       </plugin>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-checkstyle-plugin</artifactId>
93       </plugin>
94       <plugin>
95         <groupId>org.codehaus.mojo</groupId>
96         <artifactId>taglist-maven-plugin</artifactId>
97       </plugin>
98       <plugin>
99         <groupId>org.codehaus.mojo</groupId>
100         <artifactId>findbugs-maven-plugin</artifactId>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-changes-plugin</artifactId>
105         <configuration>
106           <xmlPath>${basedir}/src/site/changes.xml</xmlPath>
107           <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
108         </configuration>
109         <reportSets>
110           <reportSet>
111             <reports>
112               <report>changes-report</report>
113             </reports>
114           </reportSet>
115         </reportSets>
116       </plugin>
117     </plugins>
118   </reporting>
119
120   <build>
121     <defaultGoal>install</defaultGoal>
122     <resources>
123       <resource>
124         <directory>src/main/resources</directory>
125       </resource>
126       <resource>
127         <directory>src/main/java</directory>
128         <includes>
129           <include>**/*.xml</include>
130         </includes>
131       </resource>
132     </resources>
133     <testResources>
134       <testResource>
135         <directory>src/test/resources</directory>
136       </testResource>
137       <testResource>
138         <directory>src/test/spring</directory>
139         <includes>
140           <include>**/*.xml</include>
141         </includes>
142       </testResource>
143     </testResources>
144   </build>
145
146   <dependencies>
147     <dependency>
148       <groupId>commons-logging</groupId>
149       <artifactId>commons-logging</artifactId>
150       <version>1.1.1</version>
151     </dependency>
152     <dependency>
153       <groupId>commons-configuration</groupId>
154       <artifactId>commons-configuration</artifactId>
155       <version>1.5</version>
156     </dependency>
157     <dependency>
158       <groupId>commons-beanutils</groupId>
159       <artifactId>commons-beanutils</artifactId>
160     </dependency>
161     <dependency>
162       <groupId>commons-betwixt</groupId>
163       <artifactId>commons-betwixt</artifactId>
164       <version>0.8</version>
165     </dependency>
166     <dependency>
167       <groupId>javax.servlet</groupId>
168       <artifactId>servlet-api</artifactId>
169       <version>2.4</version>
170       <scope>provided</scope>
171     </dependency>
172     <dependency>
173       <groupId>commons-httpclient</groupId>
174       <artifactId>commons-httpclient</artifactId>
175       <version>3.1</version>
176     </dependency>
177     <dependency>
178       <groupId>commons-beanutils</groupId>
179       <artifactId>commons-beanutils</artifactId>
180       <version>1.7.0</version>
181     </dependency>
182     <dependency>
183       <groupId>commons-dbcp</groupId>
184       <artifactId>commons-dbcp</artifactId>
185       <version>20030825.184428</version>
186     </dependency>
187     <dependency>
188       <groupId>commons-pool</groupId>
189       <artifactId>commons-pool</artifactId>
190       <version>20030825.183949</version>
191     </dependency>
192     <dependency>
193       <groupId>org.springframework</groupId>
194       <artifactId>spring</artifactId>
195       <version>2.5.5</version>
196     </dependency>
197     <dependency>
198       <groupId>org.springframework</groupId>
199       <artifactId>spring-hibernate3</artifactId>
200       <version>2.0.8</version>
201     </dependency>
202     <dependency>
203       <groupId>org.springframework.security</groupId>
204       <artifactId>spring-security-core</artifactId>
205       <version>2.0.3</version>
206     </dependency>
207     <dependency>
208       <groupId>aspectj</groupId>
209       <artifactId>aspectjweaver</artifactId>
210       <version>1.5.4</version>
211     </dependency>
212     <dependency>
213       <groupId>log4j</groupId>
214       <artifactId>log4j</artifactId>
215       <version>1.2.9</version>
216     </dependency>
217     <dependency>
218       <groupId>junit</groupId>
219       <artifactId>junit</artifactId>
220       <version>4.4</version>
221       <scope>test</scope>
222     </dependency>
223     <dependency>
224       <groupId>org.springframework</groupId>
225       <artifactId>spring-test</artifactId>
226       <version>2.5.5</version>
227     </dependency>
228     <dependency>
229       <groupId>jmock</groupId>
230       <artifactId>jmock</artifactId>
231       <version>1.1.0</version>
232       <scope>test</scope>
233     </dependency>
234     <dependency>
235       <groupId>mysql</groupId>
236       <artifactId>mysql-connector-java</artifactId>
237       <version>5.1.6</version>
238       <scope>test</scope>
239     </dependency>
240     <dependency>
241       <groupId>org.apache.velocity</groupId>
242       <artifactId>velocity</artifactId>
243       <version>1.5</version>
244     </dependency>
245   </dependencies>
246
247 </project>
Note: See TracBrowser for help on using the browser.