Skip to content

Commit

Permalink
enabled findbugs and checkstyle in UCE. Made some cosmetic changes in…
Browse files Browse the repository at this point in the history
… All-In-One-Mediator.
  • Loading branch information
Robert Danczak committed Apr 20, 2013
1 parent 83ee078 commit 0eec271
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ jdk:
install:
- mvn -f uce/pom.xml clean install -DskipTests=true
script:
- mvn -f uce/pom.xml test
- mvn -f uce/pom.xml test
after_success:
- mvn -f uce/pom.xml install site
7 changes: 6 additions & 1 deletion All-In-One-Mediator/config/assembly-bin.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">

<id>bin</id>

<formats>
<format>zip</format>
<format>tar.gz</format>
</formats>

<includeBaseDirectory>true</includeBaseDirectory>
<includeSiteDirectory>false</includeSiteDirectory>

<dependencySets>
<!-- move plugin jars to plugins/ -->
<dependencySet>
Expand Down Expand Up @@ -44,4 +49,4 @@
</excludes>
</dependencySet>
</dependencySets>
</assembly>
</assembly>
40 changes: 30 additions & 10 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@
this is UCE project parent
keeps settings / deps / licenses etc
-->
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>de.fhkn.in.uce</groupId>
Expand All @@ -43,10 +40,10 @@
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>

<scm>
<url>git@github.com:htwg/lib.git</url>
Expand All @@ -67,5 +64,28 @@
<version>1.6.1</version>
</dependency>
</dependencies>
</project>

<ciManagement>
<url>https://travis-ci.org/htwg/UCE</url>
</ciManagement>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<failOnError>false</failOnError>
<outputDirectory>${basedir}/site/</outputDirectory>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
</project>

0 comments on commit 0eec271

Please sign in to comment.