aboutsummaryrefslogtreecommitdiffstats
path: root/archetypes/sonar-gwt-plugin/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2011-09-30 13:30:22 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2011-09-30 13:30:22 +0200
commitdc30e55e56000ad1b44ef6c387e1370885f68c4b (patch)
treea6716447c4b62bfcf05439b62c2c0880aa0ddd10 /archetypes/sonar-gwt-plugin/pom.xml
parent3d4da0c8c9d101a02feec363b2b09e3faa69a10a (diff)
downloadsonarqube-dc30e55e56000ad1b44ef6c387e1370885f68c4b.tar.gz
sonarqube-dc30e55e56000ad1b44ef6c387e1370885f68c4b.zip
SONAR-2797 end of support of maven archetypes
Diffstat (limited to 'archetypes/sonar-gwt-plugin/pom.xml')
-rw-r--r--archetypes/sonar-gwt-plugin/pom.xml59
1 files changed, 0 insertions, 59 deletions
diff --git a/archetypes/sonar-gwt-plugin/pom.xml b/archetypes/sonar-gwt-plugin/pom.xml
deleted file mode 100644
index 283cd647280..00000000000
--- a/archetypes/sonar-gwt-plugin/pom.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-<?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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar</artifactId>
- <version>2.12-SNAPSHOT</version>
- <relativePath>../..</relativePath>
- </parent>
-
- <groupId>org.codehaus.sonar.archetypes</groupId>
- <artifactId>sonar-gwt-plugin-archetype</artifactId>
- <packaging>maven-archetype</packaging>
- <name>Sonar :: Archetypes :: GWT</name>
- <description>Maven archetype to create a Sonar plugin including GWT pages</description>
-
- <properties>
- <sonarTargetVersion>${project.version}</sonarTargetVersion>
- <dollar>$</dollar>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-plugin-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-gwt-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-
- <build>
- <resources>
- <resource>
- <filtering>true</filtering>
- <directory>${basedir}/src/main/resources</directory>
- </resource>
- </resources>
-
- <extensions>
- <extension>
- <groupId>org.apache.maven.archetype</groupId>
- <artifactId>archetype-packaging</artifactId>
- <version>2.0-alpha-4</version>
- </extension>
- </extensions>
- <plugins>
- <plugin>
- <artifactId>maven-archetype-plugin</artifactId>
- <version>2.0-alpha-4</version>
- <extensions>true</extensions>
- </plugin>
- </plugins>
- </build>
-</project>