Skip to content

Commit

Permalink
Fix for bug JENKINS-29938 - Unable to serialize is reported when publ…
Browse files Browse the repository at this point in the history
…ishing doxygen generate html files
  • Loading branch information
ezjenkins committed Nov 17, 2015
1 parent 196ed78 commit 7c996d3
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> <properties>
<maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target> <maven.compiler.target>1.6</maven.compiler.target>
<project.buuld.sourceEncoding>UTF-8</project.buuld.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.buuld.sourceEncoding>
</properties> </properties>


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


import hudson.EnvVars; import hudson.EnvVars;


import java.io.*;

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


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

0 comments on commit 7c996d3

Please sign in to comment.