123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- <?xml version="1.0"?>
- <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <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>
- <groupId>org.apache.ambari</groupId>
- <artifactId>ambari</artifactId>
- <packaging>pom</packaging>
- <name>Ambari Main</name>
- <version>1.3.0-SNAPSHOT</version>
- <description>Ambari</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <clover.license>${user.home}/clover.license</clover.license>
- <buildnumber-maven-plugin-version>1.2</buildnumber-maven-plugin-version>
- <deb.publisher>Hortonworks</deb.publisher>
- <deb.section>universe/admin</deb.section>
- <deb.architecture>i386 amd64</deb.architecture>
- <deb.priority>extra</deb.priority>
- </properties>
- <pluginRepositories>
- <pluginRepository>
- <id>maven2-repository.dev.java.net</id>
- <name>Java.net Repository for Maven</name>
- <url>http://download.java.net/maven/2/</url>
- <layout>default</layout>
- </pluginRepository>
- <pluginRepository>
- <id>maven2-repository.atlassian</id>
- <name>Atlassian Maven Repository</name>
- <url>https://maven.atlassian.com/repository/public</url>
- <layout>default</layout>
- </pluginRepository>
- <pluginRepository>
- <id>maven2-glassfish-repository.dev.java.net</id>
- <name>Java.net Repository for Maven</name>
- <url>http://download.java.net/maven/glassfish/</url>
- </pluginRepository>
- </pluginRepositories>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <version>0.10</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.12</version>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>rpm-maven-plugin</artifactId>
- <version>2.0.1</version>
- </plugin>
- <plugin>
- <groupId>org.vafer</groupId>
- <artifactId>jdeb</artifactId>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.8</version>
- <executions>
- <execution>
- <id>parse-package-version</id>
- <goals>
- <goal>regex-property</goal>
- </goals>
- <configuration>
- <name>package-version</name>
- <value>${project.version}</value>
- <regex>^([0-9]+)\.([0-9]+)\.([0-9]+)(\.|-).*</regex>
- <replacement>$1.$2.$3</replacement>
- <failIfNoMatch>true</failIfNoMatch>
- </configuration>
- </execution>
- <execution>
- <id>parse-package-release</id>
- <goals>
- <goal>regex-property</goal>
- </goals>
- <configuration>
- <name>package-release</name>
- <value>${project.version}</value>
- <regex>^([0-9]+)\.([0-9]+)\.([0-9]+)(\.|-)(([0-9]+)|(SNAPSHOT)).*</regex>
- <replacement>$5</replacement>
- <failIfNoMatch>true</failIfNoMatch>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.0</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>ambari-project/src/main/assemblies/empty.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>rpm-maven-plugin</artifactId>
- <version>2.0.1</version>
- <executions>
- <execution>
- <!-- unbinds rpm creation from maven lifecycle -->
- <phase>none</phase>
- <goals>
- <goal>attached-rpm</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <copyright>2012, Apache Software Foundation</copyright>
- <group>Development</group>
- <description>Maven Recipe: RPM Package.</description>
- <release>${package-release}</release>
- <version>${package-version}</version>
- <mappings/>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>**/repo_*.j2</exclude>
- <exclude>**/ambari-log4j.spec</exclude>
- <exclude>**/version.txt</exclude>
- <exclude>**/release.txt</exclude>
- <exclude>**/*.list</exclude>
- <exclude>**/hdp_mon_nagios_addons.conf</exclude>
- <exclude>**/*.json</exclude>
- <exclude>**/*.svg</exclude>
- <exclude>derby.log</exclude>
- <exclude>CHANGES.txt</exclude>
- <exclude>pass.txt</exclude>
- <exclude>contrib/addons/test/dataServices/jmx/data/cluster_configuration.json.nohbase</exclude>
- <exclude>contrib/ambari-scom/msi/src/GUI_Ambari.sln</exclude>
- <exclude>version</exclude>
- <!--IDE and GIT files-->
- <exclude>.idea/</exclude>
- <exclude>.git/</exclude>
- <exclude>**/.gitignore</exclude>
- <exclude>**/.gitattributes</exclude>
- <exclude>**/.gitkeep</exclude>
- <exclude>**/.jshintrc</exclude>
- <exclude>**/.editorconfig</exclude>
- <!--gitignore content-->
- <exclude>.DS_Store</exclude>
- <exclude>.iml/</exclude>
- <exclude>.classpath</exclude>
- <exclude>.project</exclude>
- <exclude>.settings</exclude>
- <exclude>*.pyc</exclude>
- <exclude>*.py~</exclude>
- <exclude>.hg</exclude>
- <exclude>.hgignore</exclude>
- <exclude>.hgtags</exclude>
- <!--Python Mock library (BSD license)-->
- <exclude>ambari-common/src/test/python/mock/**</exclude>
- <!--Jinja2 library (BSD license)-->
- <exclude>ambari-common/src/main/python/jinja2/**</exclude>
- <!--Contributions-->
- <exclude>contrib/ambari-scom/management-pack/Hadoop_MP/**</exclude>
- <exclude>contrib/addons/test/dataServices/jmx/data/cluster_configuration.json.nohbase</exclude>
- <exclude>contrib/ambari-scom/msi/src/GUI_Ambari.sln</exclude>
- <exclude>contrib/ambari-scom/ambari-scom-server/pass.txt</exclude>
- <exclude>contrib/ambari-scom/*/rat.txt</exclude>
- <exclude>contrib/ambari-scom/metrics-sink/target/**</exclude>
- <exclude>contrib/views/*/target/**</exclude>
- <exclude>contrib/views/files/src/main/resources/ui/bower_components/**</exclude>
- <exclude>contrib/views/files/src/main/resources/ui/node/**</exclude>
- <exclude>contrib/views/files/src/main/resources/ui/node_modules/**</exclude>
- <exclude>contrib/views/files/src/main/resources/ui/public/**</exclude>
- <exclude>contrib/views/jobs/src/main/resources/ui/.tmp/**</exclude>
- <exclude>contrib/views/jobs/src/main/resources/ui/**/bower_components/**</exclude>
- <exclude>contrib/views/jobs/src/main/resources/ui/dist/**</exclude>
- <exclude>contrib/views/jobs/src/main/resources/ui/node/**</exclude>
- <exclude>contrib/views/jobs/src/main/resources/ui/node_modules/**</exclude>
- <exclude>contrib/views/jobs/src/main/resources/ui/**/.bowerrc</exclude>
- <exclude>contrib/views/pig/src/main/resources/ui/pig-web/public/**</exclude>
- <exclude>contrib/views/pig/src/main/resources/ui/pig-web/node_modules/**</exclude>
- <exclude>contrib/views/pig/src/main/resources/ui/pig-web/node/**</exclude>
- <exclude>contrib/views/pig/src/main/resources/ui/pig-web/bower_components/**</exclude>
- <exclude>contrib/views/pig/src/main/resources/ui/pig-web/vendor/**</exclude>
- <exclude>contrib/views/slider/src/main/resources/ui/public/**</exclude>
- <exclude>contrib/views/slider/src/main/resources/ui/node_modules/**</exclude>
- <exclude>contrib/views/slider/src/main/resources/ui/vendor/**</exclude>
- <exclude>contrib/views/slider/src/main/resources/ui/app/assets/javascripts/modernizr-2.6.2.min.js</exclude>
- <exclude>contrib/addons/package/deb/nagios_addon_deb_control</exclude>
- <exclude>contrib/addons/src/addOns/nagios/conf.d/hdp_mon_nagios_addons.conf</exclude>
- <exclude>contrib/views/*/.classpath</exclude>
- <exclude>contrib/views/*/.project</exclude>
- <exclude>contrib/views/*/.settings/**</exclude>
- <!--Velocity log -->
- <exclude>**/velocity.log*</exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <phase>test</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.vafer</groupId>
- <artifactId>jdeb</artifactId>
- <version>1.0.1</version>
- <executions>
- <execution>
- <phase>none</phase>
- <goals>
- <goal>jdeb</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <skip>true</skip>
- <attach>false</attach>
- <submodules>true</submodules>
- <controlDir>${basedir}/ambari-project/src/main/package/deb/control</controlDir>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>default</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>ambari-web</module>
- <module>ambari-project</module>
- <module>ambari-views</module>
- <module>ambari-admin</module>
- <module>ambari-server</module>
- <module>ambari-agent</module>
- <module>ambari-client</module>
- <module>ambari-shell</module>
- </modules>
- </profile>
- <profile>
- <id>static-web</id>
- <modules>
- <module>ambari-project</module>
- <module>ambari-views</module>
- <module>ambari-admin</module>
- <module>ambari-server</module>
- <module>ambari-agent</module>
- <module>ambari-client</module>
- <module>ambari-shell</module>
- </modules>
- </profile>
- <profile>
- <id>clover</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>clover</name>
- </property>
- </activation>
- <properties>
- <maven.clover.licenseLocation>${clover.license}</maven.clover.licenseLocation>
- <clover.version>3.1.11</clover.version>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-clover2-plugin</artifactId>
- <version>${clover.version}</version>
- <configuration>
- <includesAllSourceRoots>true</includesAllSourceRoots>
- <includesTestSourceRoots>true</includesTestSourceRoots>
- <targetPercentage>50%</targetPercentage>
- <generateHtml>true</generateHtml>
- <generateXml>true</generateXml>
- <excludes>
- <exclude>**/generated/**</exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <id>clover-setup</id>
- <phase>process-sources</phase>
- <goals>
- <goal>setup</goal>
- </goals>
- </execution>
- <execution>
- <id>clover</id>
- <phase>test</phase>
- <goals>
- <goal>clover</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|