Teste de election
[DistributedFileSystem.git] / pom.xml
blobca37dccc0958fc1b43c32513a644e2e6f3777ca7
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http:/www.w3.org/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>org.hnaves</groupId>
5         <artifactId>dfs</artifactId>
6         <version>1.0</version>
7         <packaging>jar</packaging>
8         <name>Java Distributed File System</name>
9         <description>Java Distributed File System</description>
10         <inceptionYear>2008</inceptionYear>
11         <dependencies>
12                 <dependency>
13                         <groupId>junit</groupId>
14                         <artifactId>junit</artifactId>
15                         <version>3.8.1</version>
16                         <scope>test</scope>
17                 </dependency>
18         </dependencies>
19         <build>
20                 <plugins>
21                         <plugin>
22                                 <groupId>org.apache.maven.plugins</groupId>
23                                 <artifactId>maven-compiler-plugin</artifactId>
24                                 <configuration>
25                                         <source>1.5</source>
26                                         <target>1.5</target>
27                                 </configuration>
28                         </plugin>
29                         <plugin>
30                                 <groupId>org.apache.maven.plugins</groupId>
31                                 <artifactId>maven-jar-plugin</artifactId>
32                                 <configuration>
33                                         <archive>
34                                                 <manifest>
35                                                         <addClasspath>true</addClasspath>
36                                                         <mainClass>org.hnaves.dfs.Main</mainClass>
37                                                 </manifest>
38                                         </archive>
39                                 </configuration>
40                         </plugin>
41                 </plugins>
42         </build>
43 </project>