forked from lift/lift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscala-280.patch
1057 lines (967 loc) · 34.5 KB
/
scala-280.patch
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff --git archetypes/lift-archetype-basic/pom.xml archetypes/lift-archetype-basic/pom.xml
index 483ab3f..5921e25 100644
--- archetypes/lift-archetype-basic/pom.xml
+++ archetypes/lift-archetype-basic/pom.xml
@@ -23,10 +23,10 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-archetype-basic_2.8.1</artifactId>
+ <artifactId>lift-archetype-basic_2.8.0</artifactId>
<packaging>maven-archetype</packaging>
<properties>
diff --git archetypes/lift-archetype-blank/pom.xml archetypes/lift-archetype-blank/pom.xml
index f2cdbf6..33bf4a9 100644
--- archetypes/lift-archetype-blank/pom.xml
+++ archetypes/lift-archetype-blank/pom.xml
@@ -23,10 +23,10 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-archetype-blank_2.8.1</artifactId>
+ <artifactId>lift-archetype-blank_2.8.0</artifactId>
<packaging>maven-archetype</packaging>
<properties>
diff --git archetypes/lift-archetype-jpa-basic/pom.xml archetypes/lift-archetype-jpa-basic/pom.xml
index b96f0ee..8265e6e 100644
--- archetypes/lift-archetype-jpa-basic/pom.xml
+++ archetypes/lift-archetype-jpa-basic/pom.xml
@@ -23,10 +23,10 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-archetype-jpa-basic_2.8.1</artifactId>
+ <artifactId>lift-archetype-jpa-basic_2.8.0</artifactId>
<packaging>maven-archetype</packaging>
<properties>
diff --git archetypes/lift-archetype-jpa-blank-single/pom.xml archetypes/lift-archetype-jpa-blank-single/pom.xml
index 8c91af5..0aa4891 100644
--- archetypes/lift-archetype-jpa-blank-single/pom.xml
+++ archetypes/lift-archetype-jpa-blank-single/pom.xml
@@ -23,10 +23,10 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-archetype-jpa-blank-single_2.8.1</artifactId>
+ <artifactId>lift-archetype-jpa-blank-single_2.8.0</artifactId>
<packaging>maven-archetype</packaging>
<properties>
diff --git archetypes/lift-archetype-jpa-blank/pom.xml archetypes/lift-archetype-jpa-blank/pom.xml
index f680854..725f932 100644
--- archetypes/lift-archetype-jpa-blank/pom.xml
+++ archetypes/lift-archetype-jpa-blank/pom.xml
@@ -23,10 +23,10 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-archetype-jpa-blank_2.8.1</artifactId>
+ <artifactId>lift-archetype-jpa-blank_2.8.0</artifactId>
<packaging>maven-archetype</packaging>
<properties>
diff --git archetypes/lift-archetype-sbt/pom.xml archetypes/lift-archetype-sbt/pom.xml
index 9f3a16c..694f388 100644
--- archetypes/lift-archetype-sbt/pom.xml
+++ archetypes/lift-archetype-sbt/pom.xml
@@ -23,10 +23,10 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-archetype-sbt_2.8.1</artifactId>
+ <artifactId>lift-archetype-sbt_2.8.0</artifactId>
<packaging>maven-archetype</packaging>
<properties>
diff --git archetypes/pom.xml archetypes/pom.xml
index 57884c9..e017e1e 100644
--- archetypes/pom.xml
+++ archetypes/pom.xml
@@ -35,11 +35,11 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-parent_2.8.1</artifactId>
+ <artifactId>lift-parent_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
<relativePath>../resources/lift-parent/pom.xml</relativePath>
</parent>
- <artifactId>archetypes_2.8.1</artifactId>
+ <artifactId>archetypes_2.8.0</artifactId>
<packaging>pom</packaging>
<!--
diff --git examples/JPADemo/JPADemo-spa/pom.xml examples/JPADemo/JPADemo-spa/pom.xml
index 25c1841..1a938b7 100644
--- examples/JPADemo/JPADemo-spa/pom.xml
+++ examples/JPADemo/JPADemo-spa/pom.xml
@@ -4,11 +4,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>JPADemo-Master_2.8.1</artifactId>
+ <artifactId>JPADemo-Master_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>JPADemo-spa_2.8.1</artifactId>
+ <artifactId>JPADemo-spa_2.8.0</artifactId>
<packaging>jar</packaging>
<name>JPADemo-spa</name>
diff --git examples/JPADemo/JPADemo-web/pom.xml examples/JPADemo/JPADemo-web/pom.xml
index 25e6ecd..02be9c9 100644
--- examples/JPADemo/JPADemo-web/pom.xml
+++ examples/JPADemo/JPADemo-web/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>JPADemo-Master_2.8.1</artifactId>
+ <artifactId>JPADemo-Master_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>JPADemo-web_2.8.1</artifactId>
+ <artifactId>JPADemo-web_2.8.0</artifactId>
<packaging>war</packaging>
<name>JPADemo-web</name>
diff --git examples/JPADemo/pom.xml examples/JPADemo/pom.xml
index 494d9a4..f996e5a 100644
--- examples/JPADemo/pom.xml
+++ examples/JPADemo/pom.xml
@@ -4,11 +4,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>JPADemo-Master_2.8.1</artifactId>
+ <artifactId>JPADemo-Master_2.8.0</artifactId>
<description>JPA tutorial master project</description>
<name>JPA Demo Master</name>
<inceptionYear>2007</inceptionYear>
diff --git examples/example/pom.xml examples/example/pom.xml
index 0784d57..9629505 100644
--- examples/example/pom.xml
+++ examples/example/pom.xml
@@ -4,11 +4,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-example_2.8.1</artifactId>
+ <artifactId>lift-example_2.8.0</artifactId>
<packaging>war</packaging>
<name>Lift Standard Example</name>
diff --git examples/examples-osgi/hello/pom.xml examples/examples-osgi/hello/pom.xml
index e8d3d22..008a9bb 100644
--- examples/examples-osgi/hello/pom.xml
+++ examples/examples-osgi/hello/pom.xml
@@ -5,11 +5,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples-osgi_2.8.1</artifactId>
+ <artifactId>examples-osgi_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>examples-osgi-hello_2.8.1</artifactId>
+ <artifactId>examples-osgi-hello_2.8.0</artifactId>
<name>OSGi Examples for Lift - Hello</name>
<description>OSGi Examples for Lift - Hello</description>
<packaging>jar</packaging>
diff --git examples/examples-osgi/pom.xml examples/examples-osgi/pom.xml
index a1e01e7..4b03ba1 100644
--- examples/examples-osgi/pom.xml
+++ examples/examples-osgi/pom.xml
@@ -5,11 +5,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>examples-osgi_2.8.1</artifactId>
+ <artifactId>examples-osgi_2.8.0</artifactId>
<name>OSGi Examples for Lift</name>
<packaging>pom</packaging>
diff --git examples/flotDemo/pom.xml examples/flotDemo/pom.xml
index 8e12c4a..bc25189 100755
--- examples/flotDemo/pom.xml
+++ examples/flotDemo/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-flot-demo_2.8.1</artifactId>
+ <artifactId>lift-flot-demo_2.8.0</artifactId>
<packaging>war</packaging>
<name>Lift Flot widget example</name>
diff --git examples/hellodarwin/pom.xml examples/hellodarwin/pom.xml
index ab609cf..f507be4 100644
--- examples/hellodarwin/pom.xml
+++ examples/hellodarwin/pom.xml
@@ -4,11 +4,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>hellodarwin_2.8.1</artifactId>
+ <artifactId>hellodarwin_2.8.0</artifactId>
<packaging>war</packaging>
<name>HelloDarwin tutorial application</name>
<!--
diff --git examples/hellofbc/pom.xml examples/hellofbc/pom.xml
index 7ae3319..89180f2 100644
--- examples/hellofbc/pom.xml
+++ examples/hellofbc/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-hellofbc_2.8.1</artifactId>
+ <artifactId>lift-hellofbc_2.8.0</artifactId>
<packaging>war</packaging>
<name>Facebook Connect Example Application</name>
diff --git examples/hellolift/pom.xml examples/hellolift/pom.xml
index 279039a..504ebe7 100644
--- examples/hellolift/pom.xml
+++ examples/hellolift/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-hellolift_2.8.1</artifactId>
+ <artifactId>lift-hellolift_2.8.0</artifactId>
<packaging>war</packaging>
<name>HelloLift example application</name>
diff --git examples/helloscalate/pom.xml examples/helloscalate/pom.xml
index 54ba7a5..88ecd34 100644
--- examples/helloscalate/pom.xml
+++ examples/helloscalate/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-hello-scalate_2.8.1</artifactId>
+ <artifactId>lift-hello-scalate_2.8.0</artifactId>
<packaging>war</packaging>
<name>Scalate Example Application</name>
diff --git examples/http-authentication/pom.xml examples/http-authentication/pom.xml
index 41d1089..6b74a84 100644
--- examples/http-authentication/pom.xml
+++ examples/http-authentication/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>http-authentication_2.8.1</artifactId>
+ <artifactId>http-authentication_2.8.0</artifactId>
<packaging>war</packaging>
<name>HTTP Authentication example</name>
diff --git examples/pom.xml examples/pom.xml
index 6d687f6..5e2c7d4 100644
--- examples/pom.xml
+++ examples/pom.xml
@@ -35,11 +35,11 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-parent_2.8.1</artifactId>
+ <artifactId>lift-parent_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
<relativePath>../resources/lift-parent/pom.xml</relativePath>
</parent>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<packaging>pom</packaging>
<!--
diff --git examples/skittr/pom.xml examples/skittr/pom.xml
index 124729d..5052558 100644
--- examples/skittr/pom.xml
+++ examples/skittr/pom.xml
@@ -3,11 +3,11 @@
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>examples_2.8.1</artifactId>
+ <artifactId>examples_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>skittr-example_2.8.1</artifactId>
+ <artifactId>skittr-example_2.8.0</artifactId>
<packaging>war</packaging>
<name>Skittr Example</name>
diff --git framework/lift-base/lift-actor/pom.xml framework/lift-base/lift-actor/pom.xml
index ccf6512..4b98994 100644
--- framework/lift-base/lift-actor/pom.xml
+++ framework/lift-base/lift-actor/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-actor_2.8.1</artifactId>
+ <artifactId>lift-actor_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-base/lift-common/pom.xml framework/lift-base/lift-common/pom.xml
index d75a59a..8338021 100644
--- framework/lift-base/lift-common/pom.xml
+++ framework/lift-base/lift-common/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-common_2.8.1</artifactId>
+ <artifactId>lift-common_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-base/lift-json-ext/pom.xml framework/lift-base/lift-json-ext/pom.xml
index 397447a..f9d1dce 100644
--- framework/lift-base/lift-json-ext/pom.xml
+++ framework/lift-base/lift-json-ext/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-json-ext_2.8.1</artifactId>
+ <artifactId>lift-json-ext_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-base/lift-json/pom.xml framework/lift-base/lift-json/pom.xml
index aa830c9..7dc437a 100644
--- framework/lift-base/lift-json/pom.xml
+++ framework/lift-base/lift-json/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-json_2.8.1</artifactId>
+ <artifactId>lift-json_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-base/lift-util/pom.xml framework/lift-base/lift-util/pom.xml
index 2d54641..955edb8 100644
--- framework/lift-base/lift-util/pom.xml
+++ framework/lift-base/lift-util/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-util_2.8.1</artifactId>
+ <artifactId>lift-util_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-base/lift-webkit/pom.xml framework/lift-base/lift-webkit/pom.xml
index a5c9a4b..a833597 100644
--- framework/lift-base/lift-webkit/pom.xml
+++ framework/lift-base/lift-webkit/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-webkit_2.8.1</artifactId>
+ <artifactId>lift-webkit_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-base/pom.xml framework/lift-base/pom.xml
index 786dc4d..1c03631 100644
--- framework/lift-base/pom.xml
+++ framework/lift-base/pom.xml
@@ -31,10 +31,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>framework_2.8.1</artifactId>
+ <artifactId>framework_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-base_2.8.1</artifactId>
+ <artifactId>lift-base_2.8.0</artifactId>
<packaging>pom</packaging>
<!--
diff --git framework/lift-modules/lift-amqp/pom.xml framework/lift-modules/lift-amqp/pom.xml
index 82886a7..bc7cbde 100644
--- framework/lift-modules/lift-amqp/pom.xml
+++ framework/lift-modules/lift-amqp/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-amqp_2.8.1</artifactId>
+ <artifactId>lift-amqp_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-facebook/pom.xml framework/lift-modules/lift-facebook/pom.xml
index 1ec1664..96dd021 100644
--- framework/lift-modules/lift-facebook/pom.xml
+++ framework/lift-modules/lift-facebook/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-facebook_2.8.1</artifactId>
+ <artifactId>lift-facebook_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-imaging/pom.xml framework/lift-modules/lift-imaging/pom.xml
index f1da0a4..15d513a 100644
--- framework/lift-modules/lift-imaging/pom.xml
+++ framework/lift-modules/lift-imaging/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-imaging_2.8.1</artifactId>
+ <artifactId>lift-imaging_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-jta/pom.xml framework/lift-modules/lift-jta/pom.xml
index 6201240..0a2e26f 100644
--- framework/lift-modules/lift-jta/pom.xml
+++ framework/lift-modules/lift-jta/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-jta_2.8.1</artifactId>
+ <artifactId>lift-jta_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-ldap/pom.xml framework/lift-modules/lift-ldap/pom.xml
index 1ce9544..56dd38a 100644
--- framework/lift-modules/lift-ldap/pom.xml
+++ framework/lift-modules/lift-ldap/pom.xml
@@ -24,10 +24,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-ldap_2.8.1</artifactId>
+ <artifactId>lift-ldap_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-machine/pom.xml framework/lift-modules/lift-machine/pom.xml
index 1ad0572..15f2f2e 100644
--- framework/lift-modules/lift-machine/pom.xml
+++ framework/lift-modules/lift-machine/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-machine_2.8.1</artifactId>
+ <artifactId>lift-machine_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-oauth-mapper/pom.xml framework/lift-modules/lift-oauth-mapper/pom.xml
index 9b527de..a77c070 100644
--- framework/lift-modules/lift-oauth-mapper/pom.xml
+++ framework/lift-modules/lift-oauth-mapper/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-oauth-mapper_2.8.1</artifactId>
+ <artifactId>lift-oauth-mapper_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-oauth/pom.xml framework/lift-modules/lift-oauth/pom.xml
index b248ee5..db57f00 100644
--- framework/lift-modules/lift-oauth/pom.xml
+++ framework/lift-modules/lift-oauth/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-oauth_2.8.1</artifactId>
+ <artifactId>lift-oauth_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-openid/pom.xml framework/lift-modules/lift-openid/pom.xml
index ef0842f..ed44fe1 100644
--- framework/lift-modules/lift-openid/pom.xml
+++ framework/lift-modules/lift-openid/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-openid_2.8.1</artifactId>
+ <artifactId>lift-openid_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-osgi/pom.xml framework/lift-modules/lift-osgi/pom.xml
index 4b758de..ad5d50c 100644
--- framework/lift-modules/lift-osgi/pom.xml
+++ framework/lift-modules/lift-osgi/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-osgi_2.8.1</artifactId>
+ <artifactId>lift-osgi_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-paypal/pom.xml framework/lift-modules/lift-paypal/pom.xml
index 8c92f15..c2bf978 100644
--- framework/lift-modules/lift-paypal/pom.xml
+++ framework/lift-modules/lift-paypal/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-paypal_2.8.1</artifactId>
+ <artifactId>lift-paypal_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-scalate/pom.xml framework/lift-modules/lift-scalate/pom.xml
index 9c19880..f6967ee 100644
--- framework/lift-modules/lift-scalate/pom.xml
+++ framework/lift-modules/lift-scalate/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-scalate_2.8.1</artifactId>
+ <artifactId>lift-scalate_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-testkit/pom.xml framework/lift-modules/lift-testkit/pom.xml
index 2faf138..68a98a5 100644
--- framework/lift-modules/lift-testkit/pom.xml
+++ framework/lift-modules/lift-testkit/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-testkit_2.8.1</artifactId>
+ <artifactId>lift-testkit_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-textile/pom.xml framework/lift-modules/lift-textile/pom.xml
index ace7772..ba91659 100644
--- framework/lift-modules/lift-textile/pom.xml
+++ framework/lift-modules/lift-textile/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-textile_2.8.1</artifactId>
+ <artifactId>lift-textile_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-widgets/pom.xml framework/lift-modules/lift-widgets/pom.xml
index 3143976..68f2e71 100644
--- framework/lift-modules/lift-widgets/pom.xml
+++ framework/lift-modules/lift-widgets/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-widgets_2.8.1</artifactId>
+ <artifactId>lift-widgets_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-wiring/pom.xml framework/lift-modules/lift-wiring/pom.xml
index 0552cb1..9208657 100644
--- framework/lift-modules/lift-wiring/pom.xml
+++ framework/lift-modules/lift-wiring/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-wiring_2.8.1</artifactId>
+ <artifactId>lift-wiring_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-wizard/pom.xml framework/lift-modules/lift-wizard/pom.xml
index bd2a3e1..a8b0d9d 100644
--- framework/lift-modules/lift-wizard/pom.xml
+++ framework/lift-modules/lift-wizard/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-wizard_2.8.1</artifactId>
+ <artifactId>lift-wizard_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/lift-xmpp/pom.xml framework/lift-modules/lift-xmpp/pom.xml
index 9d2a000..2d25c70 100644
--- framework/lift-modules/lift-xmpp/pom.xml
+++ framework/lift-modules/lift-xmpp/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-xmpp_2.8.1</artifactId>
+ <artifactId>lift-xmpp_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-modules/pom.xml framework/lift-modules/pom.xml
index e08e4be..6655187 100644
--- framework/lift-modules/pom.xml
+++ framework/lift-modules/pom.xml
@@ -31,10 +31,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>framework_2.8.1</artifactId>
+ <artifactId>framework_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-modules_2.8.1</artifactId>
+ <artifactId>lift-modules_2.8.0</artifactId>
<packaging>pom</packaging>
<!--
diff --git framework/lift-persistence/lift-couchdb/pom.xml framework/lift-persistence/lift-couchdb/pom.xml
index 56a28be..9799d44 100644
--- framework/lift-persistence/lift-couchdb/pom.xml
+++ framework/lift-persistence/lift-couchdb/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-couchdb_2.8.1</artifactId>
+ <artifactId>lift-couchdb_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-db/pom.xml framework/lift-persistence/lift-db/pom.xml
index 3a700dc..534d8a4 100644
--- framework/lift-persistence/lift-db/pom.xml
+++ framework/lift-persistence/lift-db/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-db_2.8.1</artifactId>
+ <artifactId>lift-db_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-jpa/pom.xml framework/lift-persistence/lift-jpa/pom.xml
index bc85471..e827e43 100644
--- framework/lift-persistence/lift-jpa/pom.xml
+++ framework/lift-persistence/lift-jpa/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-jpa_2.8.1</artifactId>
+ <artifactId>lift-jpa_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-mapper/pom.xml framework/lift-persistence/lift-mapper/pom.xml
index 4adce86..fc9a27b 100644
--- framework/lift-persistence/lift-mapper/pom.xml
+++ framework/lift-persistence/lift-mapper/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-mapper_2.8.1</artifactId>
+ <artifactId>lift-mapper_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-mongodb-record/pom.xml framework/lift-persistence/lift-mongodb-record/pom.xml
index 0a4106b..b08aa5e 100644
--- framework/lift-persistence/lift-mongodb-record/pom.xml
+++ framework/lift-persistence/lift-mongodb-record/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-mongodb-record_2.8.1</artifactId>
+ <artifactId>lift-mongodb-record_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-mongodb/pom.xml framework/lift-persistence/lift-mongodb/pom.xml
index 03f3cee..9410422 100644
--- framework/lift-persistence/lift-mongodb/pom.xml
+++ framework/lift-persistence/lift-mongodb/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-mongodb_2.8.1</artifactId>
+ <artifactId>lift-mongodb_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-proto/pom.xml framework/lift-persistence/lift-proto/pom.xml
index 50550be..5aeb803 100644
--- framework/lift-persistence/lift-proto/pom.xml
+++ framework/lift-persistence/lift-proto/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-proto_2.8.1</artifactId>
+ <artifactId>lift-proto_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-record/pom.xml framework/lift-persistence/lift-record/pom.xml
index 84a4b0b..7ab9bc3 100644
--- framework/lift-persistence/lift-record/pom.xml
+++ framework/lift-persistence/lift-record/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-record_2.8.1</artifactId>
+ <artifactId>lift-record_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/lift-squeryl-record/pom.xml framework/lift-persistence/lift-squeryl-record/pom.xml
index 2ebcf30..2183990 100644
--- framework/lift-persistence/lift-squeryl-record/pom.xml
+++ framework/lift-persistence/lift-squeryl-record/pom.xml
@@ -27,10 +27,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-squeryl-record_2.8.1</artifactId>
+ <artifactId>lift-squeryl-record_2.8.0</artifactId>
<!--
~ More Project Information
diff --git framework/lift-persistence/pom.xml framework/lift-persistence/pom.xml
index 800a3da..c5b2495 100644
--- framework/lift-persistence/pom.xml
+++ framework/lift-persistence/pom.xml
@@ -31,10 +31,10 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>framework_2.8.1</artifactId>
+ <artifactId>framework_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
- <artifactId>lift-persistence_2.8.1</artifactId>
+ <artifactId>lift-persistence_2.8.0</artifactId>
<packaging>pom</packaging>
<!--
diff --git framework/pom.xml framework/pom.xml
index 441ec49..301cfcc 100644
--- framework/pom.xml
+++ framework/pom.xml
@@ -35,11 +35,11 @@
-->
<parent>
<groupId>net.liftweb</groupId>
- <artifactId>lift-parent_2.8.1</artifactId>
+ <artifactId>lift-parent_2.8.0</artifactId>
<version>2.3-SNAPSHOT</version>
<relativePath>../resources/lift-parent/pom.xml</relativePath>
</parent>
- <artifactId>framework_2.8.1</artifactId>
+ <artifactId>framework_2.8.0</artifactId>
<packaging>pom</packaging>