summaryrefslogtreecommitdiff
path: root/ambari-agent
diff options
context:
space:
mode:
authorJitendra Nath Pandey <jitendra@apache.org>2012-08-29 08:49:31 +0000
committerJitendra Nath Pandey <jitendra@apache.org>2012-08-29 08:49:31 +0000
commit4cf83b9a7d42699a3b47d6f578299013fa6ab75f (patch)
treeeab28e9043349dafbe7833fb061d1a1919bb06a8 /ambari-agent
parent0c96cc32d9441b785181a65ab0eaad8686750b7e (diff)
AMBARI-685. Basic classes. Contributed by Hitesh.
git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/branches/AMBARI-666@1378479 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'ambari-agent')
-rw-r--r--ambari-agent/pom.xml60
1 files changed, 0 insertions, 60 deletions
diff --git a/ambari-agent/pom.xml b/ambari-agent/pom.xml
index 31ff4fa669..ef130ec1ed 100644
--- a/ambari-agent/pom.xml
+++ b/ambari-agent/pom.xml
@@ -37,66 +37,6 @@
</dependencies>
<build>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>1.6</version>
- <configuration>
- <createDependencyReducedPom>true</createDependencyReducedPom>
- <filters>
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>META-INF/*.SF</exclude>
- <exclude>META-INF/*.DSA</exclude>
- <exclude>META-INF/*.RSA</exclude>
- </excludes>
- </filter>
- </filters>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <transformers>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
- <mainClass>org.apache.ambari.agent.AmbariAgent</mainClass>
- </transformer>
- </transformers>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>7.0.0.pre5</version>
- <configuration>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- </connector>
- <connector implementation="org.mortbay.jetty.ssl.SslSelectChannelConnector">
- <port>8140</port>
- <keystore>src/test/resources/server.keystore</keystore>
- <keyPassword>123456</keyPassword>
- <password>123456</password>
- </connector>
- </connectors>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-ssl</artifactId>
- <version>7.0.0.pre5</version>
- </dependency>
- </dependencies>
- </plugin>
</plugins>
- <finalName>ambari-agent</finalName>
</build>
</project>