2018-03-15 16:23:33 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed 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
|
|
|
|
|
2019-05-28 07:29:44 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-15 16:23:33 +00:00
|
|
|
|
|
|
|
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. See accompanying LICENSE file.
|
|
|
|
-->
|
|
|
|
<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
|
2019-05-27 06:24:59 +00:00
|
|
|
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-03-15 16:23:33 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2018-04-05 18:24:39 +00:00
|
|
|
<artifactId>hadoop-hdds</artifactId>
|
2019-03-14 10:59:40 +00:00
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2018-03-15 16:23:33 +00:00
|
|
|
</parent>
|
2018-04-05 18:24:39 +00:00
|
|
|
<artifactId>hadoop-hdds-server-framework</artifactId>
|
2019-03-14 10:59:40 +00:00
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2018-05-10 18:44:14 +00:00
|
|
|
<description>Apache Hadoop Distributed Data Store Server Framework</description>
|
|
|
|
<name>Apache Hadoop HDDS Server Framework</name>
|
2018-03-15 16:23:33 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2018-04-05 18:24:39 +00:00
|
|
|
<artifactId>hadoop-hdds-common</artifactId>
|
2018-03-15 16:23:33 +00:00
|
|
|
</dependency>
|
2018-07-09 19:02:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
2019-01-30 12:40:45 +00:00
|
|
|
<artifactId>mockito-all</artifactId>
|
2018-07-09 19:02:20 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-03-15 16:23:33 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy web resources</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
2018-03-16 20:27:29 +00:00
|
|
|
<copy toDir="${project.build.directory}/classes/webapps/static">
|
|
|
|
<fileset
|
|
|
|
dir="${basedir}/../../hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static">
|
2018-03-15 16:23:33 +00:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|