@@ -5,204 +5,6 @@ import com.mongodb.client.MongoDatabase
55
66@ ChangeLog (order = " 032" )
77class AntMigration {
8- @ ChangeSet (
9- order = " 001" ,
10- id = " 001-add_ant_1.9.10" ,
11- author = " andrebrait"
12- )
13- def migration001 (implicit db : MongoDatabase ): Unit = {
14- Version (
15- " ant" ,
16- " 1.9.10" ,
17- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.9.10-bin.zip"
18- ).validate()
19- .insert()
20- }
21-
22- @ ChangeSet (
23- order = " 002" ,
24- id = " 002-add_ant_1.9.11" ,
25- author = " andrebrait"
26- )
27- def migration002 (implicit db : MongoDatabase ): Unit = {
28- Version (
29- " ant" ,
30- " 1.9.11" ,
31- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.9.11-bin.zip"
32- ).validate()
33- .insert()
34- }
35-
36- @ ChangeSet (
37- order = " 003" ,
38- id = " 003-add_ant_1.9.12" ,
39- author = " andrebrait"
40- )
41- def migration003 (implicit db : MongoDatabase ): Unit = {
42- Version (
43- " ant" ,
44- " 1.9.12" ,
45- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.9.12-bin.zip"
46- ).validate()
47- .insert()
48- }
49-
50- @ ChangeSet (
51- order = " 004" ,
52- id = " 004-add_ant_1.9.13" ,
53- author = " andrebrait"
54- )
55- def migration004 (implicit db : MongoDatabase ): Unit = {
56- Version (
57- " ant" ,
58- " 1.9.13" ,
59- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.9.13-bin.zip"
60- ).validate()
61- .insert()
62- }
63-
64- @ ChangeSet (
65- order = " 005" ,
66- id = " 005-add_ant_1.9.14" ,
67- author = " andrebrait"
68- )
69- def migration005 (implicit db : MongoDatabase ): Unit = {
70- Version (
71- " ant" ,
72- " 1.9.14" ,
73- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.9.14-bin.zip"
74- ).validate()
75- .insert()
76- }
77-
78- @ ChangeSet (
79- order = " 006" ,
80- id = " 006-add_ant_1.9.15" ,
81- author = " andrebrait"
82- )
83- def migration006 (implicit db : MongoDatabase ): Unit = {
84- Version (
85- " ant" ,
86- " 1.9.15" ,
87- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.9.15-bin.zip"
88- ).validate()
89- .insert()
90- }
91-
92- @ ChangeSet (
93- order = " 007" ,
94- id = " 007-add_ant_1.10.2" ,
95- author = " andrebrait"
96- )
97- def migration007 (implicit db : MongoDatabase ): Unit = {
98- Version (
99- " ant" ,
100- " 1.10.2" ,
101- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.2-bin.zip"
102- ).validate()
103- .insert()
104- }
105-
106- @ ChangeSet (
107- order = " 008" ,
108- id = " 008-add_ant_1.10.3" ,
109- author = " andrebrait"
110- )
111- def migration008 (implicit db : MongoDatabase ): Unit = {
112- Version (
113- " ant" ,
114- " 1.10.3" ,
115- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.3-bin.zip"
116- ).validate()
117- .insert()
118- }
119-
120- @ ChangeSet (
121- order = " 009" ,
122- id = " 009-add_ant_1.10.4" ,
123- author = " andrebrait"
124- )
125- def migration009 (implicit db : MongoDatabase ): Unit = {
126- Version (
127- " ant" ,
128- " 1.10.4" ,
129- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.4-bin.zip"
130- ).validate()
131- .insert()
132- }
133-
134- @ ChangeSet (
135- order = " 010" ,
136- id = " 010-add_ant_1.10.5" ,
137- author = " andrebrait"
138- )
139- def migration010 (implicit db : MongoDatabase ): Unit = {
140- Version (
141- " ant" ,
142- " 1.10.5" ,
143- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.5-bin.zip"
144- ).validate()
145- .insert()
146- }
147-
148- @ ChangeSet (
149- order = " 011" ,
150- id = " 011-add_ant_1.10.6" ,
151- author = " andrebrait"
152- )
153- def migration011 (implicit db : MongoDatabase ): Unit = {
154- Version (
155- " ant" ,
156- " 1.10.6" ,
157- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.6-bin.zip"
158- ).validate()
159- .insert()
160- }
161-
162- @ ChangeSet (
163- order = " 012" ,
164- id = " 012-add_ant_1.10.7" ,
165- author = " andrebrait"
166- )
167- def migration012 (implicit db : MongoDatabase ): Unit = {
168- Version (
169- " ant" ,
170- " 1.10.7" ,
171- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.7-bin.zip"
172- ).validate()
173- .insert()
174- }
175-
176- @ ChangeSet (
177- order = " 013" ,
178- id = " 013-add_ant_1.10.8" ,
179- author = " andrebrait"
180- )
181- def migration013 (implicit db : MongoDatabase ): Unit = {
182- Version (
183- " ant" ,
184- " 1.10.8" ,
185- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.8-bin.zip"
186- ).validate()
187- .insert()
188- .asCandidateDefault()
189- }
190-
191- @ ChangeSet (
192- order = " 014" ,
193- id = " 014-add_ant_1.10.9" ,
194- author = " aalmiray"
195- )
196- def migration014 (implicit db : MongoDatabase ): Unit = {
197- Version (
198- " ant" ,
199- " 1.10.9" ,
200- " https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.9-bin.zip"
201- ).validate()
202- .insert()
203- .asCandidateDefault()
204- }
205-
2068 @ ChangeSet (
2079 order = " 015" ,
20810 id = " 015-add_ant_1.10.10" ,
0 commit comments