diff options
Diffstat (limited to 'sonar-channel/pom.xml')
-rw-r--r-- | sonar-channel/pom.xml | 66 |
1 files changed, 35 insertions, 31 deletions
diff --git a/sonar-channel/pom.xml b/sonar-channel/pom.xml index 830a25af0c6..dc6859b63ed 100644 --- a/sonar-channel/pom.xml +++ b/sonar-channel/pom.xml @@ -1,34 +1,38 @@ <?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.3-SNAPSHOT</version> - <relativePath>..</relativePath> - </parent> - <artifactId>sonar-channel</artifactId> - <name>Sonar :: Channel</name> - <description>Code Channel</description> + <modelVersion>4.0.0</modelVersion> - <dependencies> - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-all</artifactId> - <scope>test</scope> - </dependency> - </dependencies> -</project>
\ No newline at end of file + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar</artifactId> + <version>3.3-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + + <artifactId>sonar-channel</artifactId> + + <name>Sonar :: Channel</name> + <description>Code Channel</description> + + <dependencies> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + +</project> |