From 4e750d8832e2873615ac1c4a0e0a789b27f7d561 Mon Sep 17 00:00:00 2001 From: nie <nie@informatik.uni-kiel.de> Date: Fri, 17 Feb 2012 16:42:02 +0100 Subject: [PATCH] Moved the readme-file; Changed some code in the pom.xml for the build. --- Kieker.WebGUI/Read.me | 7 +++++ Kieker.WebGUI/pom.xml | 61 ++++++++++++++++++++++++++++++++++++++----- 2 files changed, 62 insertions(+), 6 deletions(-) create mode 100644 Kieker.WebGUI/Read.me diff --git a/Kieker.WebGUI/Read.me b/Kieker.WebGUI/Read.me new file mode 100644 index 00000000..986af16c --- /dev/null +++ b/Kieker.WebGUI/Read.me @@ -0,0 +1,7 @@ +The project "Kieker.WebGUI" can be started via Maven (3). Just use the command + +mvn jetty:run + +to pack the war-file, deploy it on jetty and start jetty. The web tool is then available at + +http://localhost:8080/Kieker.WebGUI/main \ No newline at end of file diff --git a/Kieker.WebGUI/pom.xml b/Kieker.WebGUI/pom.xml index f5c753a3..49a8a91f 100644 --- a/Kieker.WebGUI/pom.xml +++ b/Kieker.WebGUI/pom.xml @@ -270,6 +270,14 @@ <configuration> <configLocation>quality-config/cs-conf.xml</configLocation> </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>checkstyle</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -280,6 +288,14 @@ <threshold>Low</threshold> <excludeFilterFile>quality-config/fb-filter.xml</excludeFilterFile> </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>findbugs</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -293,6 +309,14 @@ </rulesets> <targetJdk>1.6</targetJdk> </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>pmd</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <groupId>org.mortbay.jetty</groupId> @@ -332,12 +356,37 @@ <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> - <configuration> - <descriptors> - <descriptor>descriptors/descriptor-src.xml</descriptor> - <descriptor>descriptors/descriptor-bin.xml</descriptor> - </descriptors> - </configuration> + <executions> + <execution> + <id>Sources-Archive</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <finalName>kieker-webgui-${project.version}_sources</finalName> + <descriptors> + <descriptor>descriptors/descriptor-src.xml</descriptor> + </descriptors> + </configuration> + </execution> + <execution> + <id>Binary-Archive</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <finalName>kieker-webgui-${project.version}_binaries</finalName> + <descriptors> + <descriptor>descriptors/descriptor-bin.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> -- GitLab