diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-05 12:43:45 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-05 12:43:45 +0100 |
commit | 7bf52372a4f63be30ae6513bae70d2f8b775e29b (patch) | |
tree | 459e8af8de426d1b4c320270b367962176390fc4 /sonar-home/pom.xml | |
parent | 5c6c22c2820f420428cb308a22c1a5262d0295e9 (diff) | |
download | sonarqube-7bf52372a4f63be30ae6513bae70d2f8b775e29b.tar.gz sonarqube-7bf52372a4f63be30ae6513bae70d2f8b775e29b.zip |
SONAR-2291 move management of file cache to the new module sonar-home
Diffstat (limited to 'sonar-home/pom.xml')
-rw-r--r-- | sonar-home/pom.xml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sonar-home/pom.xml b/sonar-home/pom.xml new file mode 100644 index 00000000000..d1e9b1b80fa --- /dev/null +++ b/sonar-home/pom.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar</artifactId> + <version>3.5-SNAPSHOT</version> + </parent> + + <artifactId>sonar-home</artifactId> + + <name>Sonar :: Home</name> + <description>Access the user home directory that contains cache of files</description> + + <dependencies> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <optional>true</optional> + </dependency> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.easytesting</groupId> + <artifactId>fest-assert</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <!-- used to compare results --> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <scope>test</scope> + </dependency> + + </dependencies> + +</project> |