Skip to content

Commit 6dc61b0

Browse files
committed
Mavenized build
1 parent 2a8d5a4 commit 6dc61b0

11 files changed

+1360
-1151
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
*.class
2+
*~
3+
.*.swp
4+
.*.swo
5+
.loadpath
6+
.buildpath
7+
.project
8+
.classpath
9+
target
10+
.settings
11+
nbproject
12+
.DS_Store

pom.xml

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project>
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>edu.umd.cs.mtc</groupId>
5+
<artifactId>multithreadedtc</artifactId>
6+
<version>1.01-junit4</version>
7+
<name>MultithreadedTC</name>
8+
<url>http://code.google.com/p/multithreadedtc-junit4/</url>
9+
10+
<dependencies>
11+
<dependency>
12+
<groupId>junit</groupId>
13+
<artifactId>junit</artifactId>
14+
<version>4.6</version>
15+
</dependency>
16+
</dependencies>
17+
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<artifactId>maven-compiler-plugin</artifactId>
22+
<configuration>
23+
<source>1.5</source>
24+
<target>1.5</target>
25+
</configuration>
26+
</plugin>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-source-plugin</artifactId>
30+
<executions>
31+
<execution>
32+
<id>attach-sources</id>
33+
<phase>verify</phase>
34+
<goals>
35+
<goal>jar</goal>
36+
</goals>
37+
</execution>
38+
</executions>
39+
</plugin>
40+
<plugin>
41+
<artifactId>maven-eclipse-plugin</artifactId>
42+
<configuration>
43+
<downloadSources>true</downloadSources>
44+
<downloadJavadocs>false</downloadJavadocs>
45+
</configuration>
46+
</plugin>
47+
<plugin>
48+
<artifactId>maven-surefire-plugin</artifactId>
49+
<version>2.3</version>
50+
<configuration>
51+
<argLine>-Xmn1024m</argLine>
52+
<printSummary>true</printSummary>
53+
<reportFormat>plain</reportFormat>
54+
<forkMode>pertest</forkMode>
55+
<failIfNoTests>false</failIfNoTests>
56+
<testFailureIgnore>true</testFailureIgnore>
57+
</configuration>
58+
</plugin>
59+
</plugins>
60+
</build>
61+
62+
<reporting>
63+
<plugins>
64+
<plugin>
65+
<artifactId>maven-surefire-report-plugin
66+
</artifactId>
67+
<configuration>
68+
<linkXRef>true</linkXRef>
69+
<!-- only show failure: -->
70+
<showSuccess>false</showSuccess>
71+
</configuration>
72+
</plugin>
73+
<plugin>
74+
<groupId>org.codehaus.mojo</groupId>
75+
<artifactId>jxr-maven-plugin</artifactId>
76+
</plugin>
77+
<plugin>
78+
<artifactId>maven-checkstyle-plugin
79+
</artifactId>
80+
<configuration>
81+
<!--<configLocation>XVSM_Checkstyle.xml</configLocation>-->
82+
</configuration>
83+
</plugin>
84+
<plugin>
85+
<artifactId>maven-javadoc-plugin</artifactId>
86+
<configuration>
87+
<doclet>
88+
gr.spinellis.umlgraph.doclet.UmlGraphDoc
89+
</doclet>
90+
<docletArtifact>
91+
<groupId>gr.spinellis</groupId>
92+
<artifactId>UmlGraph</artifactId>
93+
<version>4.4</version>
94+
</docletArtifact>
95+
<additionalparam>
96+
-qualify -inferrel -quiet -hide java.*
97+
-postfixpackage -nodefontsize 9
98+
-nodefontpackagesize 7
99+
</additionalparam>
100+
<destDir>docs/api</destDir>
101+
<jarOutputDirectory>
102+
target/site/download
103+
</jarOutputDirectory>
104+
</configuration>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.codehaus.mojo</groupId>
108+
<artifactId>taglist-maven-plugin</artifactId>
109+
<configuration>
110+
<tags>
111+
<tag>TODO</tag>
112+
<tag>FIXME</tag>
113+
<tag>OPTIMIZE</tag>
114+
<tag>@deprecated</tag>
115+
</tags>
116+
</configuration>
117+
</plugin>
118+
<plugin>
119+
<groupId>org.codehaus.mojo</groupId>
120+
<artifactId>cobertura-maven-plugin
121+
</artifactId>
122+
<configuration>
123+
<executions>
124+
<execution>
125+
<id>clean</id>
126+
<goals>
127+
<goal>clean</goal>
128+
</goals>
129+
</execution>
130+
</executions>
131+
</configuration>
132+
</plugin>
133+
<plugin>
134+
<groupId>org.codehaus.mojo</groupId>
135+
<artifactId>findbugs-maven-plugin</artifactId>
136+
<version>1.2</version>
137+
</plugin>
138+
</plugins>
139+
</reporting>
140+
141+
<properties>
142+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
143+
</properties>
144+
</project>
145+

src/edu/umd/cs/mtc/MultiThreadedRunner.java

-36
This file was deleted.

0 commit comments

Comments
 (0)