Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ public class LicensesTaskTest {

@Before
public void setUp() throws IOException {
File projectDir = temporaryFolder.newFolder();
File outputDir = temporaryFolder.newFolder();
File outputLicenses = new File(outputDir, "testLicenses");
File outputMetadata = new File(outputDir, "testMetadata");

project = ProjectBuilder.builder().withProjectDir(new File(BASE_DIR)).build();
project = ProjectBuilder.builder().withProjectDir(projectDir).build();
licensesTask = project.getTasks().create("generateLicenses", LicensesTask.class);

licensesTask.setRawResourceDir(outputDir);
Expand Down