Advertisement
Guest User

scoobie doobie xmly

a guest
Apr 16th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.50 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.mycompany</groupId>
  5.     <artifactId>rovkp-lab2</artifactId>
  6.     <version>1.0-SNAPSHOT</version>
  7.     <packaging>jar</packaging>
  8.     <name>rovkp-lab2</name>
  9.     <build>
  10.         <plugins>
  11.             <plugin>
  12.                 <groupId>org.apache.maven.plugins</groupId>
  13.                 <artifactId>maven-jar-plugin</artifactId>
  14.                  <version>2.6</version>
  15.                  <configuration>
  16.                   <archive>
  17.                     <manifest>
  18.                         <addClasspath>true</addClasspath>
  19.                         <mainClass>com.mycompany.rovkp.lab2.Zad3</mainClass>
  20.                     </manifest>
  21.                   </archive>
  22.                  </configuration>
  23.             </plugin>
  24.         </plugins>
  25.     </build>
  26.     <dependencies>
  27.         <dependency>
  28.             <groupId>org.apache.hadoop</groupId>
  29.             <artifactId>hadoop-client</artifactId>
  30.             <version>2.6.5</version>
  31.         </dependency>
  32.     </dependencies>
  33.     <properties>
  34.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  35.         <maven.compiler.source>1.8</maven.compiler.source>
  36.         <maven.compiler.target>1.8</maven.compiler.target>
  37.     </properties>
  38. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement