forked from rjuang/CLionArduinoPlugin
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrelease.xml
More file actions
15 lines (14 loc) · 725 Bytes
/
release.xml
File metadata and controls
15 lines (14 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2015-2023 Vladimir Schneider <vladimir.schneider@gmail.com> Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<project>
<target name="clean">
<delete file="CLionArduinoPlugin.zip"/>
</target>
<target name="zip">
<zip destfile="CLionArduinoPlugin.zip">
<zipfileset dir="." prefix="CLionArduinoPlugin" includes="lib/*.jar" />
<zipfileset dir="out/artifacts" prefix="CLionArduinoPlugin/lib" includes="*.jar"/>
<!-- <zipfileset dir="resources/META-INF" prefix="CLionArduinoPlugin/META-INF" includes="*.svg"/>-->
</zip>
</target>
</project>