File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/main/java/com/telerik Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 11apply plugin : ' java-library'
22
3+ def version = " 2.0.0"
4+
35project. ext. extractedDependenciesDir = " jar-files"
46if (project. hasProperty(" jarsOutput" )) {
57 project. ext. extractedDependenciesDir = project. ext. jarsOutput
3436 // set main class for the jar
3537 manifest {
3638 attributes ' Main-Class' : ' com.telerik.Main'
39+ attributes ' Specification-Version' : version
40+ attributes ' Manifest-Version' : version
3741 }
3842}
3943
Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ public static void main(String[] args) throws Exception {
3030
3131 long startTime = System .currentTimeMillis ();
3232
33+ Package p = Main .class .getPackage ();
34+ System .out .println ("Android d.ts Generator Version : "
35+ + p .getSpecificationVersion ());
36+
3337 new Generator ().start (inputParameters );
3438
3539 long stopTime = System .currentTimeMillis ();
You can’t perform that action at this time.
0 commit comments