aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-runner-impl/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-02-04 15:37:14 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-02-04 15:37:14 +0100
commitf756beb18045ad9dfbb6b26297fca11f7cdc6ade (patch)
tree57905cb8be38eea2a2f35e54a8cb3056b28415fd /sonar-runner-impl/pom.xml
parent0bf3c7e2b41fee06045f068c069293ba1d1aaffa (diff)
downloadsonar-scanner-cli-f756beb18045ad9dfbb6b26297fca11f7cdc6ade.tar.gz
sonar-scanner-cli-f756beb18045ad9dfbb6b26297fca11f7cdc6ade.zip
Revert "Rename module directories to follow naming conventions"
This reverts commit 0bf3c7e2b41fee06045f068c069293ba1d1aaffa.
Diffstat (limited to 'sonar-runner-impl/pom.xml')
-rw-r--r--sonar-runner-impl/pom.xml82
1 files changed, 0 insertions, 82 deletions
diff --git a/sonar-runner-impl/pom.xml b/sonar-runner-impl/pom.xml
deleted file mode 100644
index 00d9023..0000000
--- a/sonar-runner-impl/pom.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.codehaus.sonar-plugins</groupId>
- <artifactId>sonar-runner</artifactId>
- <version>2.1-SNAPSHOT</version>
- </parent>
-
- <artifactId>sonar-runner-impl</artifactId>
- <name>Sonar Runner - Implementation</name>
-
- <dependencies>
- <!-- Would be available after bootstrapping so scope = provided -->
- <dependency>
- <groupId>org.codehaus.sonar-plugins</groupId>
- <artifactId>sonar-runner-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>0.9.15</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-batch</artifactId>
- <version>${sonar.buildVersion}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-plugin-api</artifactId>
- <version>${sonar.buildVersion}</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-configuration</artifactId>
- <groupId>commons-configuration</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Unit tests -->
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-testing-harness</artifactId>
- <version>${sonar.buildVersion}</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-configuration</artifactId>
- <groupId>commons-configuration</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.easytesting</groupId>
- <artifactId>fest-assert</artifactId>
- <version>1.4</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>