Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Commit

Permalink
#43 Add Generated-By attribute into manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
rbygrave committed Dec 13, 2019
1 parent 50a6177 commit 111f3e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void writeManifestFile() {
FileObject jfo = processingContext.createManifestWriter();
if (jfo != null) {
Writer writer = jfo.openWriter();
writer.write("Generated-By: Ebean query bean generator\n");
writer.write("generated-by: Ebean query bean generator\n");
writer.write(manifestEntityPackages(allEntityPackages));
writer.write("\n");
writer.close();
Expand Down

0 comments on commit 111f3e4

Please sign in to comment.