/pom.xml
XML | 66 lines | 58 code | 3 blank | 5 comment | 0 complexity | 517293264dac7fe9a73a3027ac55f138 MD5 | raw file
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 2 <modelVersion>4.0.0</modelVersion> 3 <parent> 4 <groupId>com.google</groupId> 5 <artifactId>google</artifactId> 6 <version>1</version> 7 </parent> 8 9 <groupId>com.google.testability-explorer</groupId> 10 <artifactId>testability-explorer-parent</artifactId> 11 <version>1.3.4-SNAPSHOT</version> 12 <packaging>pom</packaging> 13 <name>Testability Explorer</name> 14 <description>Static analysis tool which helps you make your code testable.</description> 15 <url>http://testability-explorer.googlecode.com</url> 16 <scm> 17 <connection>scm:svn:http://testability-explorer.googlecode.com/svn/trunk/</connection> 18 <developerConnection>scm:svn:https://testability-explorer.googlecode.com/svn/trunk</developerConnection> 19 <url>http://code.google.com/p/testability-explorer/source/browse/</url> 20 </scm> 21 <modules> 22 <module>testability-explorer</module> 23 <module>ant-task</module> 24 <module>maven-testability-plugin</module> 25 <module>eclipse-plugin</module> 26 <!-- 27 These modules aren't finished yet. 28 <module>javascript</module> 29 <module>cpp</module> 30 --> 31 </modules> 32 33 <dependencyManagement> 34 <dependencies> 35 <dependency> 36 <groupId>junit</groupId> 37 <artifactId>junit</artifactId> 38 <version>3.8.2</version> 39 <scope>test</scope> 40 </dependency> 41 </dependencies> 42 </dependencyManagement> 43 44 <build> 45 <pluginManagement> 46 <plugins> 47 <plugin> 48 <artifactId>maven-compiler-plugin</artifactId> 49 <configuration> 50 <source>1.5</source> 51 <target>1.5</target> 52 </configuration> 53 </plugin> 54 </plugins> 55 </pluginManagement> 56 <plugins> 57 <plugin> 58 <artifactId>maven-release-plugin</artifactId> 59 <version>2.0-beta-9</version> 60 <configuration> 61 <remoteTagging>true</remoteTagging> 62 </configuration> 63 </plugin> 64 </plugins> 65 </build> 66</project>