Skip to content

Commit

Permalink
Merge pull request #13 from ezjenkins/master
Browse files Browse the repository at this point in the history
[JENKINS-29938] Unable to serialize is reported when publishing doxygen generate html files
  • Loading branch information
gboissinot committed Nov 20, 2015
2 parents 196ed78 + 06ceead commit 29a2bb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -17,7 +17,7 @@
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<project.buuld.sourceEncoding>UTF-8</project.buuld.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<licenses>
Expand Down Expand Up @@ -45,19 +45,19 @@
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.6.0</version>
<version>2.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-legacy</artifactId>
<version>2.6.0</version>
<version>2.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Expand Up @@ -2,6 +2,8 @@

import hudson.EnvVars;

import java.io.*;

import java.util.ArrayList;
import java.util.logging.Level;
import java.util.logging.Logger;
Expand All @@ -18,7 +20,7 @@
* @author mlos
*
*/
public class DoxygenEnvironmentVariableExpander {
public class DoxygenEnvironmentVariableExpander implements Serializable {

// Evaluates "$(varname)" including any white space, putting "$" and "varname"
// in capturing groups 1 and 2, respectively.
Expand Down

0 comments on commit 29a2bb0

Please sign in to comment.