Agora functionando
[DistributedFileSystem.git] / pom.xml
blob08975f54acdd7f33d4ea45ca8f26093e11112c12
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.0-SNAPSHOT</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>org.apache.mina</groupId>
14                         <artifactId>mina-core</artifactId>
15                         <version>2.0.0-M3</version>
16                         <scope>compile</scope>
17                 </dependency>
18                 <dependency>
19                         <groupId>org.slf4j</groupId>
20                         <artifactId>slf4j-log4j12</artifactId>
21                         <version>1.5.2</version>
22                         <scope>compile</scope>
23                 </dependency>
24                 <dependency>
25                         <groupId>commons-net</groupId>
26                         <artifactId>commons-net</artifactId>
27                         <version>2.0</version>
28                         <scope>test</scope>
29                 </dependency>
30                 <dependency>
31                         <groupId>log4j</groupId>
32                         <artifactId>log4j</artifactId>
33                         <version>1.2.13</version>
34                         <scope>compile</scope>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.apache.ftpserver</groupId>
38                         <artifactId>ftpserver-core</artifactId>
39                         <version>1.0.0-M3</version>
40                         <scope>compile</scope>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.apache.ftpserver</groupId>
44                         <artifactId>ftplet-api</artifactId>
45                         <version>1.0.0-M3</version>
46                         <scope>compile</scope>
47                 </dependency>
48                 <dependency>
49                         <groupId>junit</groupId>
50                         <artifactId>junit</artifactId>
51                         <version>3.8.1</version>
52                         <scope>test</scope>
53                 </dependency>
54         </dependencies>
55         <build>
56                 <plugins>
57                         <plugin>
58                                 <groupId>org.apache.maven.plugins</groupId>
59                                 <artifactId>maven-compiler-plugin</artifactId>
60                                 <configuration>
61                                         <source>1.5</source>
62                                         <target>1.5</target>
63                                 </configuration>
64                         </plugin>
65                         <plugin>
66                                 <groupId>org.apache.maven.plugins</groupId>
67                                 <artifactId>maven-dependency-plugin</artifactId>
68                                 <executions>
69                                         <execution>
70                                                 <id>copy-my-dependencies</id>
71                                                 <phase>generate-resources</phase>
72                                                 <goals>
73                                                         <goal>unpack-dependencies</goal>
74                                                 </goals>
75                                                 <configuration>
76                                                         <includeScope>compile</includeScope>
77                                                         <outputDirectory>${project.build.directory}/classes</outputDirectory>
78                                                         <excludes>META-INF/**</excludes>
79                                                 </configuration>
80                                         </execution>
81                                 </executions>
82                         </plugin>
83                         <plugin>
84                                 <groupId>org.apache.maven.plugins</groupId>
85                                 <artifactId>maven-jar-plugin</artifactId>
86                                 <configuration>
87                                         <archive>
88                                                 <index>true</index>
89                                                 <manifest>
90                                                         <addClasspath>true</addClasspath>
91                                                         <mainClass>org.hnaves.dfs.election.Election</mainClass>
92                                                 </manifest>
93                                         </archive>
94                                 </configuration>
95                         </plugin>
96                 </plugins>
97         </build>
98 </project>