Skip to main content
summaryrefslogtreecommitdiffstats
blob: 78b6590306736db8fa8916b7f7de98c18ab7d4b7 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<feature
      id="org.eclipse.objectteams.otdt-tests"
      label="OTDT Development Tools Unit Tests"
      version="0.7.0"
      provider-name="Eclipse Object Teams Project">

   <description>
This is a build-time-only feature for testing the Object Teams Development Tooling.
   </description>

   <copyright>
      The software &quot;Object Teams Development Tooling&quot; (OTDT) is a
result of the joint project TOPPrax and has been developed in
collaboration between 
the Fraunhofer Institut für Rechnerarchitektur und Softwaretechnik
(FIRST) 
and the Technische Unversität Berlin. 
The software consists of three distinguishable parts:
- A compiler for OT/J (Compiler),
- A graphical user interface (GUI) and
- A runtime environment for OT/J (Runtime).
The copyright is held by the Technische Universität (Compiler
and Runtime)
and by the Fraunhofer Gesellschaft, München, Deutschland,
for its Fraunhofer Institut für Rechnerarchitektur und Softwaretechnik
(FIRST) (Compiler and GUI) and others.
This software is based on Eclipse and the Java Development Tooling
(JDT) of which it contains parts.
   </copyright>

   <license url="%licenseURL">
   		%license
   </license>

   <requires>
      <import plugin="org.junit"/>
      <import plugin="org.eclipse.jdt.core"/>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.core.runtime"/>
      <import plugin="org.eclipse.jdt.debug"/>
      <import plugin="org.eclipse.team.core"/>
      <import plugin="org.eclipse.text"/>
   </requires>


   <plugin
         id="org.eclipse.test.performance"
         download-size="0"
         install-size="0"
         version="3.6.0"/>

   <plugin
         id="org.eclipse.jdt.core.tests.compiler"
         download-size="0"
         install-size="0"
         version="3.3.100"/>

   <plugin
         id="org.eclipse.jdt.core.tests.builder"
         download-size="0"
         install-size="0"
         version="3.3.100"/>

   <plugin
         id="org.eclipse.jdt.core.tests.model"
         download-size="0"
         install-size="0"
         version="3.3.100"/>

   <plugin
         id="org.objectteams.otdt.tests"
         download-size="0"
         install-size="0"
         version="0.7.0"/>

   <plugin
         id="org.eclipse.jdt.ui.tests.refactoring"
         download-size="0"
         install-size="0"
         version="3.6.0"/>

   <plugin
         id="org.eclipse.jdt.debug.tests"
         download-size="0"
         install-size="0"
         version="3.1.100"/>

   <plugin
         id="org.eclipse.jdt.ui.tests"
         download-size="0"
         install-size="0"
         version="3.6.0"/>
    
   <plugin
         id="org.objectteams.otdt.debug.tests"
         download-size="0"
         install-size="0"
         version="0.7.0"/>

   <plugin
         id="org.objectteams.otdt.ui.tests"
         download-size="0"
         install-size="0"
         version="0.7.0"/>

   <plugin
         id="org.objectteams.otdt.ui.tests.dom"
         download-size="0"
         install-size="0"
         version="0.7.0"/>

   <plugin
         id="org.objectteams.otdt.ui.tests.refactoring"
         download-size="0"
         install-size="0"
         version="0.7.0"/>

    <plugin
         id="org.objectteams.otdt.test.builder"
         download-size="0"
         install-size="0"
         version="0.7.0"/>
</feature>

Back to the top