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 <groupId>at.ac.tuwien.lsdc</groupId>
5 <artifactId>lsdc</artifactId>
6 <version>0.0.1-SNAPSHOT</version>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 <groupId>org.slf4j</groupId>
19 <artifactId>slf4j-api</artifactId>
20 <version>1.7.5</version>
23 <groupId>ch.qos.logback</groupId>
24 <artifactId>logback-classic</artifactId>
25 <version>1.0.7</version>
28 <groupId>net.sf.opencsv</groupId>
29 <artifactId>opencsv</artifactId>
30 <version>2.3</version>
35 <sourceDirectory>src/</sourceDirectory>
38 <groupId>org.codehaus.mojo</groupId>
39 <artifactId>exec-maven-plugin</artifactId>
40 <version>1.2.1</version>
43 <artifactId>maven-compiler-plugin</artifactId>
44 <version>3.0</version>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-jar-plugin</artifactId>
53 <version>2.4</version>
57 <mainClass>at.ac.tuwien.lsdc.SchedSimulator</mainClass>
58 <addClasspath>true</addClasspath>
59 <classpathPrefix>lib/</classpathPrefix>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-dependency-plugin</artifactId>
67 <version>2.6</version>
70 <id>copy-dependencies</id>
71 <phase>package</phase>
73 <goal>copy-dependencies</goal>
76 <outputDirectory>${project.build.directory}/lib</outputDirectory>
77 <overWriteReleases>false</overWriteReleases>
78 <overWriteSnapshots>true</overWriteSnapshots>
84 <artifactId>maven-assembly-plugin</artifactId>
85 <version>2.4</version>
88 <id>zip-Dependencies</id>
89 <phase>package</phase>
92 <descriptor>maven/zipDeps.xml</descriptor>
100 <id>zip-Dependencies-and-Site</id>
101 <phase>post-site</phase>
104 <descriptor>maven/zipDepsSite.xml</descriptor>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-surefire-plugin</artifactId>
116 <version>2.13</version>
118 <testFailureIgnore>true</testFailureIgnore>
124 <!-- Report generation -->
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-javadoc-plugin</artifactId>
130 <version>2.9</version>
136 <phase>verify</phase>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-jxr-plugin</artifactId>
146 <version>2.3</version>
149 <phase>verify</phase>
157 <groupId>org.codehaus.mojo</groupId>
158 <artifactId>cobertura-maven-plugin</artifactId>
159 <version>2.5.2</version>
165 <phase>verify</phase>
167 <goal>cobertura</goal>
173 <groupId>org.apache.maven.plugins</groupId>
174 <artifactId>maven-checkstyle-plugin</artifactId>
175 <version>2.9.1</version>
178 <phase>verify</phase>
180 <goal>checkstyle</goal>
183 <configLocation>checkstyle.xml</configLocation>
189 <groupId>org.codehaus.mojo</groupId>
190 <artifactId>javancss-maven-plugin</artifactId>
191 <version>2.0</version>
194 <phase>verify</phase>
202 <groupId>org.apache.maven.plugins</groupId>
203 <artifactId>maven-pmd-plugin</artifactId>
204 <version>2.7.1</version>
206 <targetJdk>1.6</targetJdk>
210 <phase>verify</phase>
219 <groupId>org.codehaus.mojo</groupId>
220 <artifactId>findbugs-maven-plugin</artifactId>
221 <version>2.5.2</version>
224 <phase>verify</phase>
226 <goal>findbugs</goal>
229 <findbugsXmlOutput>true</findbugsXmlOutput>
230 <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
231 <xmlOutput>true</xmlOutput>
237 <groupId>org.apache.maven.plugins</groupId>
238 <artifactId>maven-project-info-reports-plugin</artifactId>
239 <version>2.7</version>
247 <!-- </reporting> -->