Skip to content
Snippets Groups Projects
Commit 4e750d88 authored by nie's avatar nie
Browse files

Moved the readme-file; Changed some code in the pom.xml for the build.

parent c51594ac
Branches
Tags
No related merge requests found
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
...@@ -270,6 +270,14 @@ ...@@ -270,6 +270,14 @@
<configuration> <configuration>
<configLocation>quality-config/cs-conf.xml</configLocation> <configLocation>quality-config/cs-conf.xml</configLocation>
</configuration> </configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
...@@ -280,6 +288,14 @@ ...@@ -280,6 +288,14 @@
<threshold>Low</threshold> <threshold>Low</threshold>
<excludeFilterFile>quality-config/fb-filter.xml</excludeFilterFile> <excludeFilterFile>quality-config/fb-filter.xml</excludeFilterFile>
</configuration> </configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>findbugs</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
...@@ -293,6 +309,14 @@ ...@@ -293,6 +309,14 @@
</rulesets> </rulesets>
<targetJdk>1.6</targetJdk> <targetJdk>1.6</targetJdk>
</configuration> </configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>pmd</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
...@@ -332,12 +356,37 @@ ...@@ -332,12 +356,37 @@
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version> <version>2.3</version>
<executions>
<execution>
<id>Sources-Archive</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration> <configuration>
<appendAssemblyId>false</appendAssemblyId>
<finalName>kieker-webgui-${project.version}_sources</finalName>
<descriptors> <descriptors>
<descriptor>descriptors/descriptor-src.xml</descriptor> <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> <descriptor>descriptors/descriptor-bin.xml</descriptor>
</descriptors> </descriptors>
</configuration> </configuration>
</execution>
</executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment