-
Notifications
You must be signed in to change notification settings - Fork 92
/
build.xml
30 lines (27 loc) · 956 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="windows-1252"?>
<project name="jxls" basedir="." default="eclipse">
<!-- This helps SoltauFintel to call the Gradle build with Eclipse to get JXLS work in Eclipse. -->
<target name="eclipse">
<gradle task="cleanEclipse eclipse"/>
</target>
<target name="test">
<gradle task="test"/>
</target>
<target name="dep">
<gradle task="-b jxls-poi/build.gradle dep"/>
</target>
<target name="vulnerabilities check for jxls">
<gradle task=":jxls:dependencyCheckAnalyze"/>
</target>
<target name="vulnerabilities check for jxls-poi">
<gradle task=":jxls-poi:dependencyCheckAnalyze"/>
</target>
<macrodef name="gradle">
<attribute name="task"/>
<sequential>
<exec executable="cmd" failonerror="true">
<arg line="/c gradlew.bat -g C:\jarcache\gradle @{task}"/>
</exec>
</sequential>
</macrodef>
</project>