Skip to content

Commit bcdb0ef

Browse files
committed
Merge pull request #8 from mtrberzi/jar-manifest
fix manifest to specify main class
2 parents a528ec3 + c60b21f commit bcdb0ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ group = "org.manifold"
1313
// name = "manifold-backend-digital"
1414
version = '0.1.0-SNAPSHOT'
1515

16-
//mainClassName = "org.manifold.compiler.Main"
16+
mainClassName = "org.manifold.compiler.back.digital.DigitalBackend"
1717

1818
jar {
1919
manifest {
20-
attributes 'Implementation-Title': 'Manifold Digital Backend', 'Implementation-Version': version
20+
attributes 'Implementation-Title': 'Manifold Digital Backend', 'Implementation-Version': version, 'Main-Class': 'org.manifold.compiler.back.digital.DigitalBackend'
2121
}
2222
}
2323

0 commit comments

Comments
 (0)