blob: dcafc073bd517bc5270f3ef2b42f9582552c8840 [file] [log] [blame]
Jesse Wilson66e84b92009-12-10 17:45:56 -08001<?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
6 <modelVersion>4.0.0</modelVersion>
7
8 <groupId>org.jsr-305</groupId>
9 <artifactId>jsr-305</artifactId>
10 <version>0.1-SNAPSHOT</version>
11 <url>http://code.google.com/p/jsr-305/</url>
12 <packaging>pom</packaging>
13 <name>JSR 305: Annotations for Software Defect Detection in Java</name>
14 <description>Master Maven project for all JSR 305 projects</description>
15
16
17 <modules>
18 <module>ri</module>
19 <module>tcl</module>
20 <module>sampleUses</module>
21 <module>proposedAnnotations</module>
22 </modules>
23
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 <configuration>
30 <source>1.5</source>
31 <target>1.5</target>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
36
37</project>