forked from keepkey/mbhd-maven
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
142 lines (129 loc) · 7.36 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<project name="MBHD Maven" default="update" basedir=".">
<description>Updates from local Maven repository</description>
<!-- Create a build properties for your local system and set the following as necessary
repo=/var/maven/repo
-->
<property file="build.properties"/>
<target name="update" description="Read the existing Maven repo and update snapshots" >
<!-- MultiBit HD release artifacts (most recent only) -->
<copy todir="releases/org/multibit/hd/mbhd-parent/0.0.9" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-parent/0.0.9"/>
</copy>
<copy todir="releases/org/multibit/hd/mbhd-brit/0.0.9" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-brit/0.0.9"/>
</copy>
<copy todir="releases/org/multibit/hd/mbhd-core/0.0.9" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-core/0.0.9"/>
</copy>
<copy todir="releases/org/multibit/hd/mbhd-swing/0.0.9" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-swing/0.0.9"/>
</copy>
<!-- MultiBit HD snapshot artifacts -->
<copy todir="snapshots/org/multibit/hd/mbhd-parent" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-parent"/>
</copy>
<copy todir="snapshots/org/multibit/hd/mbhd-brit" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-brit"/>
</copy>
<copy todir="snapshots/org/multibit/hd/mbhd-core" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-core"/>
</copy>
<copy todir="snapshots/org/multibit/hd/mbhd-swing" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/mbhd-swing"/>
</copy>
<!-- MultiBit Hardware release artifacts (most recent only) -->
<copy todir="releases/org/multibit/hd/hardware/parent/0.7.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/parent/0.7.0"/>
</copy>
<copy todir="releases/org/multibit/hd/hardware/core/0.7.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/core/0.7.0"/>
</copy>
<copy todir="releases/org/multibit/hd/hardware/keepkey/0.7.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/keepkey/0.7.0"/>
</copy>
<copy todir="releases/org/multibit/hd/hardware/trezor/0.7.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/trezor/0.7.0"/>
</copy>
<!-- MultiBit Hardware snapshot artifacts -->
<copy todir="snapshots/org/multibit/hd/hardware/parent/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/parent/develop-SNAPSHOT"/>
</copy>
<copy todir="snapshots/org/multibit/hd/hardware/core/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/core/develop-SNAPSHOT"/>
</copy>
<copy todir="snapshots/org/multibit/hd/hardware/trezor/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/trezor/develop-SNAPSHOT"/>
</copy>
<copy todir="snapshots/org/multibit/hd/hardware/keepkey/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/hardware/keepkey/develop-SNAPSHOT"/>
</copy>
<!-- BRIT Core release artifacts (most recent only) -->
<copy todir="releases/org/multibit/hd/brit-parent/0.4.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/brit-parent/0.4.0"/>
</copy>
<copy todir="releases/org/multibit/hd/brit-core/0.4.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/brit-core/0.4.0"/>
</copy>
<!-- BRIT Core snapshot artifacts -->
<copy todir="snapshots/org/multibit/hd/brit-parent/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/brit-parent//develop-SNAPSHOT"/>
</copy>
<copy todir="snapshots/org/multibit/hd/brit-core/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/brit-core//develop-SNAPSHOT"/>
</copy>
<!-- Error Reporting Core release artifacts (most recent only) -->
<copy todir="releases/org/multibit/hd/error-reporting-parent/0.3.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/error-reporting-parent/0.3.0"/>
</copy>
<copy todir="releases/org/multibit/hd/error-reporting-core/0.3.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/error-reporting-core/0.3.0"/>
</copy>
<!-- Error Reporting Core snapshot artifacts -->
<copy todir="snapshots/org/multibit/hd/error-reporting-core/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/error-reporting-core//develop-SNAPSHOT"/>
</copy>
<copy todir="snapshots/org/multibit/hd/error-reporting-parent/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/hd/error-reporting-parent//develop-SNAPSHOT"/>
</copy>
<!-- MultiBit Commons release artifacts (most recent only) -->
<copy todir="releases/org/multibit/commons/1.1.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/commons/1.1.0"/>
</copy>
<!-- MultiBit Commons snapshot artifacts -->
<copy todir="snapshots/org/multibit/commons/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/multibit/commons/develop-SNAPSHOT"/>
</copy>
<!-- hid4java release artifacts (most recent only) -->
<copy todir="releases/org/hid4java/hid4java/0.4.0" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/hid4java/hid4java/0.4.0"/>
</copy>
<!-- hid4java snapshot artifacts -->
<copy todir="snapshots/org/hid4java/hid4java/develop-SNAPSHOT" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/hid4java/hid4java/develop-SNAPSHOT"/>
</copy>
<!-- Forked Bitcoinj release artifacts (most recent only) -->
<copy todir="releases/org/bitcoinj/bitcoinj-core/0.13.3-alice-0.1.5" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/bitcoinj/bitcoinj-core/0.13.3-alice-0.1.5">
<exclude name="*bundled*.jar" />
</fileset>
</copy>
<copy todir="releases/org/bitcoinj/bitcoinj-parent/0.13.3-alice-0.1.5" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/bitcoinj/bitcoinj-parent/0.13.3-alice-0.1.5"/>
</copy>
<!-- Forked Bitcoinj snapshot artifacts -->
<copy todir="snapshots/org/bitcoinj/bitcoinj-core/0.13.3-alice-0.1.5" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/bitcoinj/bitcoinj-core/0.13.3-alice-0.1.5">
<exclude name="*bundled*.jar" />
</fileset>
</copy>
<copy todir="snapshots/org/bitcoinj/bitcoinj-parent/0.13.3-alice-0.1.5" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/bitcoinj/bitcoinj-parent/0.13.3-alice-0.1.5"/>
</copy>
<!-- Orchid is released through Bitcoinj -->
<copy todir="releases/org/bitcoinj/orchid/1.1.1" overwrite="true" failonerror="false">
<fileset dir="${repo}/org/bitcoinj/orchid/1.1.1">
<exclude name="*bundled*.jar" />
</fileset>
</copy>
</target>
</project>