File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 106
106
107
107
<delete dir =" ${ temp.dir } " />
108
108
109
- <zip destfile =" ${ store.zip } " level =" 0" fallbacktoutf8=" true" createUnicodeExtraFields =" always" >
109
+ <!-- this zip action is now not working well, chaning it to 7z -->
110
+ <!-- <zip destfile="${store.zip}" level="0" fallbacktoutf8="true" createUnicodeExtraFields="always">
110
111
<fileset dir="${store.dir}" includes="*.jar"/>
111
112
<fileset dir="start-scripts"/>
112
- </zip >
113
+ </zip> -->
114
+
115
+ <!-- the actual name of the 7zip executable might be different on linux -->
116
+ <property name =" 7zip" value =" 7z" />
117
+ <exec executable =" ${ 7zip } " >
118
+ <arg value =" a" />
119
+ <arg value =" ${ store.zip } " />
120
+ <arg value =" ./${ store.dir } /*.jar" />
121
+ <arg value =" ./start-scripts/*" />
122
+ </exec >
123
+
113
124
114
125
</target >
115
126
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ manifest.custom.permissions=
107
107
manifest.file =manifest.mf
108
108
meta.inf.dir =${src.dir}/META-INF
109
109
mkdist.disabled =false
110
- platform.active =JDK_1.8
110
+ platform.active =JDK_1.7
111
111
project.license =apache20
112
112
run.classpath =\
113
113
${javac.classpath} :\
You can’t perform that action at this time.
0 commit comments