<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hadoop_test</groupId>
<artifactId>hadoop_examples</artifactId>
<version>0.0.1-SNAPSHOT</version>
</project>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<hadoop.version>1.2.1</hadoop.version>
</properties>
<repositories>
<repository>
<id>repository.jboss.org</id>
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
<snapshots>
<enabled>flase</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-jsch</artifactId>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.50</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<taskdef name="scp" classname="org.apache.tools.ant.taskdefs.optional.ssh.Scp" classpathref="maven.dependency.classpath" />
<scp file="target/${project.artifactId}-${project.version}.jar" todir="userId:userPwd@targetHost:targetDirectory" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
'노트 > 메모' 카테고리의 다른 글
수학 용어 정리. (0) | 2016.09.03 |
---|---|
Ubuntu 16.04 Realte Wireless LAN Setup (0) | 2016.08.03 |
통계학사 정리(천재들의 주사위에서) (0) | 2015.07.01 |
웹 기획 가이드 (0) | 2015.05.30 |
국내 프로그래머 블로그 (0) | 2015.03.13 |
Friedrich Leisch, (2009), "Creating R Packages: A Tutorial", R Development Core Team. (0) | 2015.02.02 |
David Dies, (----), "Building R Packages - An Introduction", Havard SPH. (0) | 2015.02.02 |
Dempster et al, "Maximum likelihood from incomplete data via the EM algorithm.", ---, 1977 번역 (0) | 2014.09.11 |
Force2.0 초기설정 가이드 (0) | 2014.06.04 |
Chel Hee Lee, "Imprecise Prior for Imprecise Inference", R Users Conference in Korea 2014, 2014 (0) | 2014.06.04 |