Skip to content

Commit 83c7bcf

Browse files
committed
Add pom and gitignore
0 parents  commit 83c7bcf

File tree

2 files changed

+123
-0
lines changed

2 files changed

+123
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.project
2+
.classpath
3+
.settings
4+
5+
target

pom.xml

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
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+
5+
<groupId>ar.edu.itba.pod.legajo50453</groupId>
6+
<artifactId>tpe</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>TPE</name>
11+
12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
</properties>
15+
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.maven.plugins</groupId>
20+
<artifactId>maven-compiler-plugin</artifactId>
21+
<version>2.5.1</version>
22+
<configuration>
23+
<source>1.7</source>
24+
<target>1.7</target>
25+
</configuration>
26+
</plugin>
27+
<plugin>
28+
<artifactId>maven-eclipse-plugin</artifactId>
29+
<version>2.3</version>
30+
<configuration>
31+
<downloadSources>true</downloadSources>
32+
<downloadJavadocs>true</downloadJavadocs>
33+
</configuration>
34+
</plugin>
35+
<plugin>
36+
<artifactId>maven-assembly-plugin</artifactId>
37+
<version>2.3</version>
38+
<configuration>
39+
<descriptorRefs>
40+
<descriptorRef>jar-with-dependencies</descriptorRef>
41+
</descriptorRefs>
42+
<archive>
43+
<manifest>
44+
<!-- TODO: This should reference the entry point -->
45+
<!-- <mainClass>ar.edu.itba.pod.legajo50454</mainClass> -->
46+
</manifest>
47+
</archive>
48+
</configuration>
49+
<executions>
50+
<execution>
51+
<id>make-assembly</id>
52+
<phase>package</phase>
53+
<goals>
54+
<goal>single</goal>
55+
</goals>
56+
</execution>
57+
</executions>
58+
</plugin>
59+
</plugins>
60+
</build>
61+
62+
<dependencies>
63+
<dependency>
64+
<groupId>ar.edu.itba.pod</groupId>
65+
<artifactId>signal</artifactId>
66+
<version>1.0</version>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.jgroups</groupId>
70+
<artifactId>jgroups</artifactId>
71+
<version>3.1.0.Final</version>
72+
</dependency>
73+
</dependencies>
74+
75+
<reporting>
76+
<plugins>
77+
<plugin>
78+
<groupId>org.codehaus.mojo</groupId>
79+
<artifactId>findbugs-maven-plugin</artifactId>
80+
<version>2.4.0</version>
81+
<configuration>
82+
<effort>Max</effort>
83+
<threshold>Low</threshold>
84+
</configuration>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-javadoc-plugin</artifactId>
89+
<version>2.8.1</version>
90+
<configuration>
91+
<show>private</show>
92+
</configuration>
93+
<reportSets>
94+
<reportSet>
95+
<reports>
96+
<report>javadoc</report>
97+
</reports>
98+
</reportSet>
99+
</reportSets>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-pmd-plugin</artifactId>
104+
<version>2.7.1</version>
105+
<configuration>
106+
<sourceEncoding>${project.build.encoding}</sourceEncoding>
107+
<targetJdk>1.6</targetJdk>
108+
</configuration>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-project-info-reports-plugin</artifactId>
113+
<version>2.1</version>
114+
</plugin>
115+
</plugins>
116+
</reporting>
117+
118+
</project>

0 commit comments

Comments
 (0)