Skip to content

Commit

Permalink
add missing class to make the buildDashboard example working
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed May 10, 2013
1 parent 7c8c443 commit d5dac46
Showing 1 changed file with 15 additions and 0 deletions.
@@ -0,0 +1,15 @@
package org.gradle.sample;

import java.lang.String;

class Person {
private String name;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}

0 comments on commit d5dac46

Please sign in to comment.