-
Notifications
You must be signed in to change notification settings - Fork 98
/
oomph.setup
876 lines (875 loc) · 35.6 KB
/
oomph.setup
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
<?xml version="1.0" encoding="UTF-8"?>
<setup:Project
xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:git="http://www.eclipse.org/oomph/setup/git/1.0"
xmlns:jdt="http://www.eclipse.org/oomph/setup/jdt/1.0"
xmlns:predicates="http://www.eclipse.org/oomph/predicates/1.0"
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
xmlns:setup.p2="http://www.eclipse.org/oomph/setup/p2/1.0"
xmlns:setup.targlets="http://www.eclipse.org/oomph/setup/targlets/1.0"
xmlns:setup.workingsets="http://www.eclipse.org/oomph/setup/workingsets/1.0"
xmlns:workingsets="http://www.eclipse.org/oomph/workingsets/1.0"
xsi:schemaLocation="http://www.eclipse.org/oomph/setup/git/1.0 https://raw.githubusercontent.com/eclipse-oomph/oomph/master/setups/models/Git.ecore http://www.eclipse.org/oomph/setup/jdt/1.0 https://raw.githubusercontent.com/eclipse-oomph/oomph/master/setups/models/JDT.ecore http://www.eclipse.org/oomph/predicates/1.0 https://raw.githubusercontent.com/eclipse-oomph/oomph/master/setups/models/Predicates.ecore http://www.eclipse.org/oomph/setup/targlets/1.0 https://raw.githubusercontent.com/eclipse-oomph/oomph/master/setups/models/SetupTarglets.ecore http://www.eclipse.org/oomph/setup/workingsets/1.0 https://raw.githubusercontent.com/eclipse-oomph/oomph/master/setups/models/SetupWorkingSets.ecore http://www.eclipse.org/oomph/workingsets/1.0 https://raw.githubusercontent.com/eclipse-oomph/oomph/master/setups/models/WorkingSets.ecore"
name="nebula"
label="Nebula">
<annotation
source="http://www.eclipse.org/oomph/setup/ConfigurationReference">
<reference
href="configuration.setup#/"/>
</annotation>
<setupTask
xsi:type="setup:CompoundTask"
name="User Preferences">
<annotation
source="http://www.eclipse.org/oomph/setup/UserPreferences">
<detail
key="/instance/org.eclipse.pde.api.tools/missing_default_api_profile">
<value>record</value>
</detail>
<detail
key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions">
<value>record</value>
</detail>
<detail
key="/instance/org.eclipse.wildwebdeveloper.xml/org.eclipse.wildwebdeveloper.xml.format.maxLineWidth">
<value>record</value>
</detail>
<detail
key="/instance/org.eclipse.pde/compilers.p.exec-env-too-low">
<value>record</value>
</detail>
</annotation>
<setupTask
xsi:type="setup:CompoundTask"
name="org.eclipse.oomph.setup.ui">
<setupTask
xsi:type="setup:PreferenceTask"
key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions"
value="true"/>
</setupTask>
<setupTask
xsi:type="setup:CompoundTask"
name="org.eclipse.pde">
<setupTask
xsi:type="setup:PreferenceTask"
key="/instance/org.eclipse.pde/compilers.p.exec-env-too-low"
value="2"/>
</setupTask>
<setupTask
xsi:type="setup:CompoundTask"
name="org.eclipse.pde.api.tools">
<setupTask
xsi:type="setup:PreferenceTask"
key="/instance/org.eclipse.pde.api.tools/missing_default_api_profile"
value="Warning"/>
</setupTask>
<setupTask
xsi:type="setup:CompoundTask"
name="org.eclipse.wildwebdeveloper.xml">
<setupTask
xsi:type="setup:PreferenceTask"
key="/instance/org.eclipse.wildwebdeveloper.xml/org.eclipse.wildwebdeveloper.xml.format.maxLineWidth"
value="200"/>
</setupTask>
</setupTask>
<setupTask
xsi:type="jdt:JRETask"
version="JavaSE-17"
location="${jre.location-17}">
<description>Define the JRE needed to compile and run the Java projects of ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="setup:EclipseIniTask"
option="-Xmx"
value="4096m"
vm="true">
<description>Set the heap space needed to work with the projects of ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="setup:EclipseIniTask"
option="-Doomph.redirection.nebula="
value="https://raw.githubusercontent.com/eclipse/nebula/master/oomph.setup->${git.clone.location|uri}/oomph.setup"
vm="true"/>
<setupTask
xsi:type="setup:ResourceCreationTask"
excludedTriggers="STARTUP MANUAL"
targetURL="${workspace.location|uri}/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml"
encoding="UTF-8">
<description>Initialize JDT's package explorer to show working sets as its root objects</description>
<content>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart">
<item value="true" key="group_libraries"/>
<item value="false" key="linkWithEditor"/>
<item value="2" key="layout"/>
<item value="2" key="rootMode"/>
<item value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#x0D;&#x0A;&lt;packageExplorer configured=&quot;true&quot; group_libraries=&quot;1&quot; layout=&quot;2&quot; linkWithEditor=&quot;0&quot; rootMode=&quot;2&quot; sortWorkingSets=&quot;false&quot; workingSetName=&quot;&quot;&gt;&#x0D;&#x0A;&lt;localWorkingSetManager&gt;&#x0D;&#x0A;&lt;workingSet editPageId=&quot;org.eclipse.jdt.internal.ui.OthersWorkingSet&quot; factoryID=&quot;org.eclipse.ui.internal.WorkingSetFactory&quot; id=&quot;1382792884467_1&quot; label=&quot;Other Projects&quot; name=&quot;Other Projects&quot;/&gt;&#x0D;&#x0A;&lt;/localWorkingSetManager&gt;&#x0D;&#x0A;&lt;activeWorkingSet workingSetName=&quot;Other Projects&quot;/&gt;&#x0D;&#x0A;&lt;allWorkingSets workingSetName=&quot;Other Projects&quot;/&gt;&#x0D;&#x0A;&lt;/packageExplorer&gt;" key="memento"/>
</section>
</section>
</content>
</setupTask>
<setupTask
xsi:type="setup:VariableTask"
name="eclipse.target.platform"
value="${eclipse.target.platform.latest}"
storageURI="scope://Workspace"/>
<setupTask
xsi:type="setup.p2:P2Task">
<repository
url="http://download.eclipse.org/nebula/snapshot"/>
<repository
url="http://download.eclipse.org/nebula/incubation/snapshot"/>
<description>Install the tools needed in the IDE to work with the source code for ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="git:GitCloneTask"
id="git.clone"
remoteURI="eclipse/nebula">
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
key="inherit">
<value>github.remoteURIs</value>
</detail>
<detail
key="label">
<value>${scope.project.label} Github repository</value>
</detail>
<detail
key="target">
<value>remoteURI</value>
</detail>
</annotation>
<description>${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="setup:StringSubstitutionTask"
name="nebula.git.clone.location"
value="${git.clone.location}"/>
<setupTask
xsi:type="setup.targlets:TargletTask">
<targlet
name="${scope.project.label}"
activeRepositoryList="Nebula Dependencies">
<requirement
name="org.eclipse.sdk.feature.group"/>
<requirement
name="*"/>
<sourceLocator
rootFolder="${git.clone.location}"
locateNestedProjects="true">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:NotPredicate">
<operand
xsi:type="predicates:NamePredicate"
pattern="org.eclipse.swt.nebula.nebface|org.eclipse.swt.nebula.presentations.shelf|org.eclipse.nebula.widgets.nebulatoolbar|org.eclipse.nebula.widgets.bidilayout|org.eclipse.nebula.snippets"/>
</operand>
</predicate>
</sourceLocator>
<repositoryList
name="Nebula Dependencies">
<repository
url="https://download.eclipse.org/tools/gef/classic/releases/latest"/>
<repository
url="https://download.eclipse.org/releases/${eclipse.target.platform}"/>
</repositoryList>
</targlet>
</setupTask>
<setupTask
xsi:type="setup.workingsets:WorkingSetTask"
id="nebula.workingsets">
<workingSet
name="Nebula">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"/>
<operand
xsi:type="workingsets:ExclusionPredicate"
excludedWorkingSet="//'nebula.workingsets'/@workingSets[name='Nebula%20Badged%20Label'] //'nebula.workingsets'/@workingSets[name='Nebula%20Calandar%20Combo'] //'nebula.workingsets'/@workingSets[name='Nebula%20Carousel'] //'nebula.workingsets'/@workingSets[name='Nebula%20CDate%20TIme'] //'nebula.workingsets'/@workingSets[name='Nebula%20Chips'] //'nebula.workingsets'/@workingSets[name='Nebula%20Collapsible%20Buttons%20'] //'nebula.workingsets'/@workingSets[name='Nebula%20Common%20Widget%20Toolkit'] //'nebula.workingsets'/@workingSets[name='Nebula%20Composite%20Table'] //'nebula.workingsets'/@workingSets[name='Nebula%20CTree'] //'nebula.workingsets'/@workingSets[name='Nebula%20CTree%20Combo'] //'nebula.workingsets'/@workingSets[name='Nebula%20Date%20Chooser'] //'nebula.workingsets'/@workingSets[name='Nebula%20Effects'] //'nebula.workingsets'/@workingSets[name='Nebula%20Floating%20Text'] //'nebula.workingsets'/@workingSets[name='Nebula%20Font%20Awesome'] //'nebula.workingsets'/@workingSets[name='Nebula%20Formatted%20Text'] //'nebula.workingsets'/@workingSets[name='Nebula%20Gallery'] //'nebula.workingsets'/@workingSets[name='Nebula%20Gantt%20Chart'] //'nebula.workingsets'/@workingSets[name='Nebula%20Geo%20Map'] //'nebula.workingsets'/@workingSets[name='Nebula%20Grid'] //'nebula.workingsets'/@workingSets[name='Nebula%20LED'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Breadcrumb'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Calculator'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Checkbox%20Group'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Column%20Browser'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Commons'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Dialog'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Dual%20List'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Header'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Heap%20Manager'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Horizontal%20Spinner'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Launcher'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Login%20Dialog'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Multi%20Choice'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Notifier'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Panels'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Preference%20Window'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Prompt%20Support'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Property%20Table'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Range%20Slider'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Rounded%20Toolbar'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Star%20Rating'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Switch%20Button'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Text%20Assist'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Tip%20of%20the%20Day'] //'nebula.workingsets'/@workingSets[name='Nebula%20Opal%20Titled%20Separator'] //'nebula.workingsets'/@workingSets[name='Nebula%20Oscilloscope'] //'nebula.workingsets'/@workingSets[name='Nebula%20Pagination'] //'nebula.workingsets'/@workingSets[name='Nebula%20Paperclips'] //'nebula.workingsets'/@workingSets[name='Nebula%20Password%20Revealer'] //'nebula.workingsets'/@workingSets[name='Nebula%20PGroup'] //'nebula.workingsets'/@workingSets[name='Nebula%20Picture'] //'nebula.workingsets'/@workingSets[name='Nebula%20Progress%20Circle'] //'nebula.workingsets'/@workingSets[name='Nebula%20PShelf'] //'nebula.workingsets'/@workingSets[name='Nebula%20Radio%20Group'] //'nebula.workingsets'/@workingSets[name='Nebula%20Rich%20Text'] //'nebula.workingsets'/@workingSets[name='Nebula%20Rounded%20Checkbox'] //'nebula.workingsets'/@workingSets[name='Nebula%20Rounded%20Switch'] //'nebula.workingsets'/@workingSets[name='Nebula%20Segmented%20Bar'] //'nebula.workingsets'/@workingSets[name='Nebula%20Slider'] //'nebula.workingsets'/@workingSets[name='Nebula%20Split%20Button'] //'nebula.workingsets'/@workingSets[name='Nebula%20Step%20Bar'] //'nebula.workingsets'/@workingSets[name='Nebula%20Table%20Combo'] //'nebula.workingsets'/@workingSets[name='Nebula%20Tiles'] //'nebula.workingsets'/@workingSets[name='Nebula%20Timeline'] //'nebula.workingsets'/@workingSets[name='Nebula%20Tree%20Mapper'] //'nebula.workingsets'/@workingSets[name='Nebula%20Visualization'] //'nebula.workingsets'/@workingSets[name='Nebula%20XViewer']"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Badged Label">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/badgedlabel/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Calandar Combo">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/calendarcombo/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Carousel">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/carousel/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula CDate TIme">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/cdatetime/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Chips">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/chips/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula CTree">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/ctree/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula CTree Combo">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/ctreecombo/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Collapsible Buttons ">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/collapsiblebuttons/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Common Widget Toolkit">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/cwt/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Composite Table">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/compositetable/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Date Chooser">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/datechooser/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Effects">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/effects/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Floating Text">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/floatingtext/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Font Awesome">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/fontawesome/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Formatted Text">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/formattedtext/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Gallery">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/gallery/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Gantt Chart">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/ganttchart/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Geo Map">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/geomap/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Grid">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/grid/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula LED">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/led/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Breadcrumb">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/breadcrumb/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Calculator">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/calculator/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Checkbox Group">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/checkboxgroup/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Column Browser">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/columnbrowser/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Commons">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/commons/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Dialog">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/dialog/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Dual List">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/duallist/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Header">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/header/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Heap Manager">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/heapmanager/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Horizontal Spinner">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/horizontalspinner/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Launcher">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/launcher/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Login Dialog">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/logindialog/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Multi Choice">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/multichoice/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Notifier">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/notifier/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Panels">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/panels/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Preference Window">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/preferencewindow/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Prompt Support">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/promptsupport/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Property Table">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/propertytable/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Range Slider">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/rangeslider/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Rounded Toolbar">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/roundedtoolbar/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Star Rating">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/starrating/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Switch Button">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/switchbutton/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Text Assist">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/textassist/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Tip of the Day">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/tipoftheday/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Opal Titled Separator">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/opal/titledseparator/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Oscilloscope">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/oscilloscope/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Pagination">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/pagination/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Paperclips">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/paperclips/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Password Revealer">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/passwordrevealer/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula PGroup">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/pgroup/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Picture">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/picture/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Progress Circle">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/progresscircle/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula PShelf">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/pshelf/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Radio Group">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/radiogroup/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Rich Text">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/richtext/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Rounded Checkbox">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/roundedcheckbox/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Rounded Switch">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/roundedswitch/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Segmented Bar">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/segmentedbar/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Slider">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/nebulaslider/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Split Button">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/splitbutton/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Step Bar">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/stepbar/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Table Combo">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/tablecombo/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Tiles">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/tiles/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Timeline">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/timeline/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Tree Mapper">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/treemapper/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula Visualization">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/visualization/.*"/>
</predicate>
</workingSet>
<workingSet
name="Nebula XViewer">
<predicate
xsi:type="predicates:AndPredicate">
<operand
xsi:type="predicates:RepositoryPredicate"
project="org.eclipse.nebula.feature"
relativePathPattern="widgets/xviewer/.*"/>
</predicate>
</workingSet>
<description>The dynamic working sets for ${scope.project.label}</description>
</setupTask>
<stream name="master"/>
<logicalProjectContainer
xsi:type="setup:ProjectCatalog"
href="index:/org.eclipse.setup#//@projectCatalogs[name='org.eclipse']"/>
<description>Nebula SWT widgets.</description>
</setup:Project>