File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,26 @@ sourceCompatibility = '1.7'
55targetCompatibility = ' 1.7'
66[compileJava, compileTestJava]* . options* . encoding = ' UTF-8'
77
8+ Properties props = new Properties ()
9+ props. load(new FileInputStream (" javasdk/NRSDK/src/com/neuronrobotics/sdk/config/build.properties" ))
10+
811manifest {
9- attributes ' Implementation-Title' : componentTitle
12+ attributes(
13+ // "Main-Class": "com.dcx.epep.Start",
14+ " Manifest-Version" : " 1.0" ,
15+ " Created-By" : " Neuron Robotics Cooperative" ,
16+ " Specification-Title" : props. " app.name" ,
17+ " Specification-Version" : props. " app.version" ,
18+ " Specification-Vendor" : " Neuron Robotics Cooperative" ,,
19+ " Implementation-Title" : props. " app.name" ,
20+ " Implementation-Version" : props. " app.version" ,
21+ " Implementation-Vendor" : " Neuron Robotics Cooperative"
22+
23+ )
1024}
1125
26+ jar. archiveName = " nrsdk-" + props. " app.version" + " -jar-with-dependencies.jar"
27+
1228// apply from: 'http://gradle-plugins.mihosoft.eu/latest/vlicenseheader.gradle'
1329// repairHeaders.licenseHeaderText = new File(projectDir,'./license-template.txt')
1430
You can’t perform that action at this time.
0 commit comments