remove unused sections of pom (backport cherry-pick from master)
Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/bbce1020 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/bbce1020 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/bbce1020 Branch: refs/heads/0.4.0 Commit: bbce1020c42dd90c19dd5ca0085b1b42ce802abd Parents: 9b27663 Author: Alex Heneveld <[email protected]> Authored: Wed Jan 9 21:56:59 2013 +0000 Committer: Alex Heneveld <[email protected]> Committed: Mon Jan 14 16:50:53 2013 +0000 ---------------------------------------------------------------------- pom.xml | 193 ++--------------------------------------------------------- 1 file changed, 4 insertions(+), 189 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/bbce1020/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ea702e9..46c3fba 100644 --- a/pom.xml +++ b/pom.xml @@ -64,21 +64,6 @@ <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> -<!-- - <repository> - <id>cloudsoft-cloudfront-releases-repo</id> - <url>http://developers.cloudsoftcorp.com/maven/releases/</url> - </repository> - <repository> - <id>cloudsoft-cloudfront-snapshots-repo</id> - <url>http://developers.cloudsoftcorp.com/maven/snapshots/</url> - <snapshots> - <enabled>true</enabled> - <updatePolicy>never</updatePolicy> - <checksumPolicy>fail</checksumPolicy> - </snapshots> - </repository> - --> </repositories> <distributionManagement> @@ -619,25 +604,6 @@ <profiles> <profile> - <id>External</id> - <distributionManagement> - <repository> - <id>ssh-repository</id> - <url>scpexe://[email protected]/var/www/downloads/maven2/releases</url> - </repository> - <site> - <id>developers.cloudsoftcorp.com</id> - <url> - scpexe://[email protected]/var/www/downloads/autodocs/${project.groupId}-${project.version} - </url> - </site> - </distributionManagement> - </profile> - - <!-- TODO <profile> <id>Sources</id> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> - <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </profile> --> - - <profile> <id>Essentials</id> <activation> <property><name> !brooklyn.explicitModules </name></property> </activation> <modules> @@ -697,55 +663,6 @@ <module>sandbox/web-acceptance</module> </modules> </profile> - <profile> - <id>Documentation</id> - <reporting> - <excludeDefaults>true</excludeDefaults> - <plugins> - <plugin> - <artifactId>maven-project-info-reports-plugin</artifactId> - <version>2.4</version> - <reportSets> - <reportSet> - <reports> - <report>index</report> - <report>modules</report> - </reports> - </reportSet> - </reportSets> - </plugin> - <plugin> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.8</version> - <configuration> - <links> - <link>http://download.oracle.com/javaee/6/api</link> - </links> - <keywords>true</keywords> - <author>false</author> - <quiet>true</quiet> - <aggregate>false</aggregate> - <detectLinks /> - <tags> - <tag> - <name>todo</name> - <placement>a</placement> - <head>To-do:</head> - </tag> - </tags> - </configuration> - <reportSets> - <reportSet> - <id>javadoc</id> - <reports> - <report>javadoc</report> - </reports> - </reportSet> - </reportSets> - </plugin> - </plugins> - </reporting> - </profile> <profile> <id>Bundle</id> @@ -773,112 +690,7 @@ </plugins> </build> </profile> - <profile> - <id>dist</id> - <activation> - <file> - <exists>dist.xml</exists> - </file> - </activation> - <build> - <plugins> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <executions> - <execution> - <id>build-distribution</id> - <phase>package</phase> - <goals> - <goal>single</goal> - </goals> - <configuration> - <appendAssemblyId>true</appendAssemblyId> - <archiveBaseDirectory>brooklyn</archiveBaseDirectory> - <descriptors> - <descriptor>dist.xml</descriptor> - </descriptors> - <useProjectArtifact>false</useProjectArtifact> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>Java</id> - <activation> - <file> - <exists>${basedir}/src/main/java</exists> - </file> - </activation> - </profile> - <profile> - <id>UML</id> - <build> - <plugins> - <plugin> - <artifactId>maven-antrun-plugin</artifactId> - <inherited>true</inherited> - <executions> - <execution> - <id>generate-plantuml</id> - <goals> - <goal>run</goal> - </goals> - <phase>package</phase> - <configuration> - <target> - <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.plugin.classpath" /> - <taskdef name="plantuml" classname="net.sourceforge.plantuml.ant.PlantUmlTask" - classpathref="maven.plugin.classpath" /> - <if> - <available file="${basedir}/src/main/java" type="dir" /> - <then> - <plantuml output="${project.build.directory}/plantuml"> - <fileset dir="${basedir}/src/main/java"> - <include name="**/*.java" /> - <include name="**/*.groovy" /> - </fileset> - </plantuml> - </then> - </if> - </target> - </configuration> - </execution> - </executions> - <dependencies> - <dependency> - <groupId>org.apache.ant</groupId> - <artifactId>ant-launcher</artifactId> - <version>${ant.version}</version> - </dependency> - <dependency> - <groupId>org.apache.ant</groupId> - <artifactId>ant</artifactId> - <version>${ant.version}</version> - </dependency> - <dependency> - <groupId>ant-contrib</groupId> - <artifactId>ant-contrib</artifactId> - <version>1.0b3</version> - <exclusions> - <exclusion> - <groupId>ant</groupId> - <artifactId>ant</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>net.sourceforge.plantuml</groupId> - <artifactId>plantuml</artifactId> - <version>${plantuml.version}</version> - </dependency> - </dependencies> - </plugin> - </plugins> - </build> - </profile> + <profile> <id>Tests</id> <activation> @@ -928,6 +740,7 @@ </plugins> </build> </profile> + <profile> <id>CI</id> <build> @@ -985,6 +798,7 @@ </plugins> </build> </profile> + <profile> <id>Integration</id> <properties> @@ -1055,6 +869,7 @@ </plugins> </build> </profile> + <profile> <id>Coverage</id> <dependencies>
