Révision 3497
TXM/trunk/org.txm.connlu.core/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25 |
|
2 |
groovy.compiler.level=30 |
|
3 |
groovy.script.filters=**/*.dsld,y,**/*.gradle,n |
TXM/trunk/org.txm.libs.office/build.properties (revision 3497) | ||
---|---|---|
4 | 4 |
.,\ |
5 | 5 |
lib/java-rdfa-0.4.2.jar,\ |
6 | 6 |
lib/log4j-1.2.17.jar,\ |
7 |
lib/odfdom-java-0.8.21-incubating.jar,\
|
|
7 |
lib/odfdom-java-0.8.11-incubating.jar,\
|
|
8 | 8 |
lib/simple-odf-0.8.2-incubating.jar,\ |
9 | 9 |
lib/slf4j-api-1.7.25.jar,\ |
10 | 10 |
lib/commons-beanutils-1.9.2.jar,\ |
... | ... | |
18 | 18 |
lib/odfdom-java-0.8.7.jar,\ |
19 | 19 |
lib/org.odftoolkit.odfdom.converter.core-1.0.6.jar,\ |
20 | 20 |
lib/slf4j-log4j12-1.7.6.jar,\ |
21 |
lib/taglets-0.8.21-incubating.jar,\
|
|
21 |
lib/taglets-0.8.11-incubating.jar,\
|
|
22 | 22 |
lib/xercesImpl-2.9.1.jar,\ |
23 | 23 |
lib/xml-apis-1.3.04.jar,\ |
24 | 24 |
OSGI-INF/ |
TXM/trunk/org.txm.groovy.core/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25
|
|
2 |
groovy.compiler.level=30
|
|
3 | 3 |
groovy.script.filters=**/*.dsld,y,**/*.gradle,n |
TXM/trunk/org.txm.edition.rcp/src/org/txm/edition/rcp/editors/EditionPanel.java (revision 3497) | ||
---|---|---|
1246 | 1246 |
|
1247 | 1247 |
String SCRIPT01 = |
1248 | 1248 |
"var html = \"\";" + //$NON-NLS-1$ |
1249 |
"if (typeof window.getSelection != \"undefined\") {" + // modern Web browsers //$NON-NLS-1$
|
|
1250 |
"var sel = window.getSelection();" + //$NON-NLS-1$
|
|
1251 |
"if (sel.rangeCount) {" + //$NON-NLS-1$
|
|
1249 |
"if (typeof window.getSelection != \"undefined\") {" + // modern Web browsers //$NON-NLS-1$ |
|
1250 |
"var sel = window.getSelection();" + //$NON-NLS-1$ |
|
1251 |
"if (sel.rangeCount) {" + //$NON-NLS-1$ |
|
1252 | 1252 |
"var container = document.createElement(\"div\");" + //$NON-NLS-1$ |
1253 | 1253 |
"for (var i = 0, len = sel.rangeCount; i < len; ++i) {" + //$NON-NLS-1$ |
1254 |
"container.appendChild(sel.getRangeAt(i).cloneContents());" + //$NON-NLS-1$ |
|
1254 |
"container.appendChild(sel.getRangeAt(i).cloneContents());" + //$NON-NLS-1$
|
|
1255 | 1255 |
"}" + //$NON-NLS-1$ |
1256 | 1256 |
"html = container.innerHTML;" + //$NON-NLS-1$ |
1257 |
"container.remove()" + |
|
1258 |
"}" + //$NON-NLS-1$ |
|
1259 |
"} else if (typeof document.selection != \"undefined\") {" + // for IE < 11 //$NON-NLS-1$ |
|
1260 |
"if (document.selection.type == \"Text\") {" + //$NON-NLS-1$ |
|
1257 |
"container = null;" + |
|
1258 |
//"container.parentNode.removeChild(container);" + |
|
1259 |
"}" + //$NON-NLS-1$ |
|
1260 |
"} else if (typeof document.selection != \"undefined\") {" + // for IE < 11 //$NON-NLS-1$ |
|
1261 |
"if (document.selection.type == \"Text\") {" + //$NON-NLS-1$ |
|
1261 | 1262 |
"html = document.selection.createRange().htmlText;" + //$NON-NLS-1$ |
1262 |
"}" + //$NON-NLS-1$
|
|
1263 |
"}" + //$NON-NLS-1$
|
|
1264 |
"return html"; //$NON-NLS-1$
|
|
1263 |
"}" + //$NON-NLS-1$ |
|
1264 |
"}" + //$NON-NLS-1$ |
|
1265 |
"return html"; //$NON-NLS-1$ |
|
1265 | 1266 |
|
1266 | 1267 |
public String getTextSelectionDOM() { |
1267 | 1268 |
|
TXM/trunk/org.txm.treetagger.core/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25
|
|
2 |
groovy.compiler.level=30
|
|
3 | 3 |
groovy.script.filters=**/*.dsld,y,**/*.gradle,n |
TXM/trunk/org.txm.analec.rcp/src/org/txm/annotation/urs/commands/SaveCorpus.java (revision 3497) | ||
---|---|---|
11 | 11 |
import org.eclipse.ui.IWorkbenchPage; |
12 | 12 |
import org.eclipse.ui.handlers.HandlerUtil; |
13 | 13 |
import org.txm.annotation.urs.URSCorpora; |
14 |
import org.txm.annotation.urs.view.ElementPropertiesView; |
|
14 | 15 |
import org.txm.annotation.urs.Messages; |
15 | 16 |
import org.txm.edition.rcp.editors.SynopticEditionEditor; |
16 | 17 |
import org.txm.rcp.TXMWindows; |
... | ... | |
46 | 47 |
} |
47 | 48 |
|
48 | 49 |
public static boolean save(final MainCorpus mainCorpus, ExecutionEvent event) { |
50 |
|
|
51 |
Corpus corpus = URSCorpora.getCorpus(mainCorpus); |
|
52 |
|
|
53 |
if (corpus == null) { |
|
54 |
Log.severe("No Analec corpus associated to the CQP corpus: "+mainCorpus.getCqpId()); |
|
55 |
return false; |
|
56 |
} |
|
57 |
|
|
58 |
ElementPropertiesView view = ElementPropertiesView.getView(); |
|
59 |
if (view != null && view.getCurrentAnalecCorpus().equals(corpus)) { |
|
60 |
view.applyAll(); |
|
61 |
} |
|
62 |
|
|
49 | 63 |
File binaryCorpusDirectory = mainCorpus.getProjectDirectory(); |
50 | 64 |
File fichierCorpus = new File(binaryCorpusDirectory, "/analec/"+mainCorpus.getID()+".ec"); //$NON-NLS-1$ //$NON-NLS-2$ |
51 |
Corpus corpus = URSCorpora.getCorpus(mainCorpus); |
|
65 |
|
|
52 | 66 |
Log.info(NLS.bind(Messages.SaveCorpus_3, fichierCorpus)); |
53 | 67 |
if (!URSCorpora.saveCorpus(mainCorpus)) { |
54 | 68 |
Log.warning(Messages.SaveCorpus_5); |
TXM/trunk/org.txm.analec.rcp/src/org/txm/annotation/urs/view/ElementPropertiesView.java (revision 3497) | ||
---|---|---|
99 | 99 |
|
100 | 100 |
return; |
101 | 101 |
} |
102 |
|
|
103 |
public static ElementPropertiesView getView() { |
|
104 |
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); |
|
105 |
return (ElementPropertiesView) page.findView(ElementPropertiesView.ID); |
|
106 |
} |
|
107 |
|
|
102 | 108 |
public static ElementPropertiesView openView() { |
103 | 109 |
// open Element View if not opened |
104 | 110 |
try { |
... | ... | |
196 | 202 |
applyButton.addSelectionListener(new SelectionListener() { |
197 | 203 |
@Override |
198 | 204 |
public void widgetSelected(SelectionEvent e) { |
199 |
for (PropertyField c : textWidgets.values()) { |
|
200 |
if (c.isDisposed()) continue; |
|
201 |
saveFieldValue(c); |
|
202 |
} |
|
205 |
applyAll(); |
|
203 | 206 |
} |
204 | 207 |
|
205 | 208 |
@Override |
... | ... | |
232 | 235 |
}); |
233 | 236 |
} |
234 | 237 |
|
238 |
/** |
|
239 |
* Apply all fields values |
|
240 |
*/ |
|
241 |
public void applyAll() { |
|
242 |
|
|
243 |
for (PropertyField c : textWidgets.values()) { |
|
244 |
if (c.isDisposed()) continue; |
|
245 |
saveFieldValue(c); |
|
246 |
} |
|
247 |
|
|
248 |
} |
|
249 |
|
|
235 | 250 |
public void unloadElement(Corpus analecCorpus, URSAnnotationToolbar toolbar) { |
236 | 251 |
|
237 | 252 |
if (this.element != null) { // save previous unit changes |
... | ... | |
303 | 318 |
this.toolbar = toolbar; |
304 | 319 |
this.element = newElement; |
305 | 320 |
for (PropertyField t : new ArrayList<PropertyField>(textWidgets.values())) { |
306 |
if (newElement.getProps().get(t.getToolTipText()) != null) { |
|
307 |
String newValue = newElement.getProps().get(t.getToolTipText()); |
|
321 |
String tname = t.getProperty(); |
|
322 |
if (newElement.getProps().get(tname) != null) { |
|
323 |
String newValue = newElement.getProps().get(tname); |
|
308 | 324 |
String oldValue = t.getText(); |
309 | 325 |
//System.out.println("new="+newValue+" old="+oldValue+" differs? "+(!newValue.equals(t.getText()))); |
310 | 326 |
if (!newValue.equals(oldValue)) { |
... | ... | |
332 | 348 |
if (toolbar == null || toolbar.isDisposed() || c.isDisposed()) return; |
333 | 349 |
|
334 | 350 |
String newVal = c.getCombo().getText().trim(); |
335 |
String v = ElementPropertiesView.this.vue.getValeurChamp(ElementPropertiesView.this.element, c.getToolTipText());
|
|
351 |
String v = ElementPropertiesView.this.vue.getValeurChamp(ElementPropertiesView.this.element, c.getProperty());
|
|
336 | 352 |
if (!v.equals(newVal) && v != null) { |
337 | 353 |
|
338 |
|
|
339 |
|
|
340 | 354 |
ElementPropertiesView.this.vue.setValeurChamp(ElementPropertiesView.this.element, c.getProperty(), newVal); |
341 | 355 |
ElementPropertiesView.this.analecCorpus.isModifie(); |
342 | 356 |
if (toolbar != null && !toolbar.isDisposed()) this.toolbar.fireIsDirty(); // the Analec corpus should be saved |
TXM/trunk/org.txm.analec.rcp/src/org/txm/annotation/urs/view/PropertyField.java (revision 3497) | ||
---|---|---|
63 | 63 |
if (first) { |
64 | 64 |
first = false; |
65 | 65 |
} |
66 |
if (!t.getText().equals(view.getAnalecVue().getValeurChamp(view.element, t.getToolTipText()))) {
|
|
66 |
if (!t.getText().equals(view.getAnalecVue().getValeurChamp(view.element, getProperty()))) {
|
|
67 | 67 |
t.setBackground(new Color(t.getDisplay(),254, 216, 177)); |
68 | 68 |
} else { |
69 | 69 |
t.setBackground(null); |
... | ... | |
93 | 93 |
} else if (e.keyCode == SWT.ESC) { |
94 | 94 |
// System.out.println("w:"+e.widget+" key pressed2."); |
95 | 95 |
|
96 |
t.setText(view.getAnalecVue().getValeurChamp(view.element, t.getToolTipText()));
|
|
96 |
t.setText(view.getAnalecVue().getValeurChamp(view.element, getProperty()));
|
|
97 | 97 |
} |
98 | 98 |
} |
99 | 99 |
|
... | ... | |
106 | 106 |
|
107 | 107 |
public void setItems(PropertyField t, Element newElement) { |
108 | 108 |
|
109 |
String[] items = view.getAnalecVue().getValeursChamp(newElement.getClass(), newElement.getType(), t.getToolTipText());
|
|
109 |
String[] items = view.getAnalecVue().getValeursChamp(newElement.getClass(), newElement.getType(), t.getProperty());
|
|
110 | 110 |
|
111 | 111 |
Arrays.sort(items, Collator.getInstance(Locale.getDefault())); |
112 | 112 |
t.getCombo().setItems(items); |
TXM/trunk/org.txm.analec.rcp/plugin.xml (revision 3497) | ||
---|---|---|
99 | 99 |
</reference> |
100 | 100 |
</visibleWhen> |
101 | 101 |
</command> |
102 |
<command |
|
103 |
commandId="org.txm.annotation.urs.commands.ImportTEIAnnotations" |
|
104 |
style="push"> |
|
105 |
<visibleWhen |
|
106 |
checkEnabled="false"> |
|
107 |
<reference |
|
108 |
definitionId="OneCorpusSelected"> |
|
109 |
</reference> |
|
110 |
</visibleWhen> |
|
111 |
</command> |
|
112 | 102 |
</menu> |
113 | 103 |
</menuContribution> |
114 | 104 |
<menuContribution |
... | ... | |
289 | 279 |
</visibleWhen> |
290 | 280 |
</command> |
291 | 281 |
</menuContribution> |
282 |
<menuContribution |
|
283 |
locationURI="menu:menu.file.import.annotations"> |
|
284 |
<command |
|
285 |
commandId="org.txm.annotation.urs.commands.ImportTEIAnnotations" |
|
286 |
style="push"> |
|
287 |
<visibleWhen |
|
288 |
checkEnabled="false"> |
|
289 |
<reference |
|
290 |
definitionId="OneCorpusSelected"> |
|
291 |
</reference> |
|
292 |
</visibleWhen> |
|
293 |
</command> |
|
294 |
</menuContribution> |
|
292 | 295 |
</extension> |
293 | 296 |
<extension |
294 | 297 |
point="org.eclipse.ui.commands"> |
TXM/trunk/org.txm.rcp/src/main/java/org/txm/rcp/CorporaSourceProvider.java (revision 3497) | ||
---|---|---|
26 | 26 |
} |
27 | 27 |
|
28 | 28 |
public static void updateSelection(ISelection selection) { |
29 |
|
|
29 | 30 |
if (instance != null) { |
30 | 31 |
instance.currentState.put(NAME, selection); |
31 | 32 |
instance.fireSourceChanged(1, NAME, selection); |
32 | 33 |
Log.fine("UPDATE SOURCE: "+selection); //$NON-NLS-1$ |
34 |
} else { |
|
35 |
selection = new StructuredSelection(); |
|
36 |
instance.currentState.put(NAME, selection); |
|
37 |
instance.fireSourceChanged(1, NAME, selection); |
|
33 | 38 |
} |
34 | 39 |
} |
35 | 40 |
|
TXM/trunk/org.txm.rcp/plugin.xml (revision 3497) | ||
---|---|---|
1131 | 1131 |
style="push"> |
1132 | 1132 |
<visibleWhen |
1133 | 1133 |
checkEnabled="false"> |
1134 |
<or> |
|
1135 |
<reference |
|
1136 |
definitionId="OneMainCorpusSelected"> |
|
1137 |
</reference> |
|
1138 |
</or> |
|
1134 |
<iterate> |
|
1135 |
<and> |
|
1136 |
<instanceof |
|
1137 |
value="org.txm.searchengine.cqp.corpus.MainCorpus"> |
|
1138 |
</instanceof> |
|
1139 |
</and> |
|
1140 |
</iterate> |
|
1139 | 1141 |
</visibleWhen> |
1140 | 1142 |
</command> |
1141 | 1143 |
|
... | ... | |
2228 | 2230 |
style="push"> |
2229 | 2231 |
<visibleWhen |
2230 | 2232 |
checkEnabled="false"> |
2231 |
<or> |
|
2232 |
<reference |
|
2233 |
definitionId="OneMainCorpusSelected"> |
|
2234 |
</reference> |
|
2235 |
</or> |
|
2233 |
<iterate> |
|
2234 |
<and> |
|
2235 |
<instanceof |
|
2236 |
value="org.txm.searchengine.cqp.corpus.MainCorpus"> |
|
2237 |
</instanceof> |
|
2238 |
</and> |
|
2239 |
</iterate> |
|
2236 | 2240 |
</visibleWhen> |
2237 | 2241 |
</command> |
2238 | 2242 |
<separator |
TXM/trunk/org.txm.libs.groovy-all/build.properties (revision 3497) | ||
---|---|---|
1 | 1 |
bin.includes = META-INF/,\ |
2 | 2 |
.,\ |
3 |
lib/groovy-2.5.0-indy.jar,\ |
|
4 |
lib/groovy-ant-2.5.0-indy.jar,\ |
|
5 |
lib/groovy-bsf-2.5.0-indy.jar,\ |
|
6 |
lib/groovy-cli-commons-2.5.0-indy.jar,\ |
|
7 |
lib/groovy-cli-picocli-2.5.0-indy.jar,\ |
|
8 |
lib/groovy-console-2.5.0-indy.jar,\ |
|
9 |
lib/groovy-datetime-2.5.0-indy.jar,\ |
|
10 |
lib/groovy-dateutil-2.5.0-indy.jar,\ |
|
11 |
lib/groovy-docgenerator-2.5.0-indy.jar,\ |
|
12 |
lib/groovy-groovydoc-2.5.0-indy.jar,\ |
|
13 |
lib/groovy-groovysh-2.5.0-indy.jar,\ |
|
14 |
lib/groovy-jmx-2.5.0-indy.jar,\ |
|
15 |
lib/groovy-json-2.5.0-indy.jar,\ |
|
16 |
lib/groovy-json-direct-2.5.0-indy.jar,\ |
|
17 |
lib/groovy-jsr223-2.5.0-indy.jar,\ |
|
18 |
lib/groovy-macro-2.5.0-indy.jar,\ |
|
19 |
lib/groovy-nio-2.5.0-indy.jar,\ |
|
20 |
lib/groovy-servlet-2.5.0-indy.jar,\ |
|
21 |
lib/groovy-sql-2.5.0-indy.jar,\ |
|
22 |
lib/groovy-swing-2.5.0-indy.jar,\ |
|
23 |
lib/groovy-templates-2.5.0-indy.jar,\ |
|
24 |
lib/groovy-test-2.5.0-indy.jar,\ |
|
25 |
lib/groovy-test-junit5-2.5.0-indy.jar,\ |
|
26 |
lib/groovy-testng-2.5.0-indy.jar,\ |
|
27 |
lib/groovy-xml-2.5.0-indy.jar,\ |
|
28 |
OSGI-INF/ |
|
3 |
OSGI-INF/,\ |
|
4 |
lib/groovy-3.0.9-indy.jar,\ |
|
5 |
lib/groovy-ant-3.0.9-indy.jar,\ |
|
6 |
lib/groovy-astbuilder-3.0.9-indy.jar,\ |
|
7 |
lib/groovy-bsf-3.0.9-indy.jar,\ |
|
8 |
lib/groovy-cli-commons-3.0.9-indy.jar,\ |
|
9 |
lib/groovy-cli-picocli-3.0.9-indy.jar,\ |
|
10 |
lib/groovy-console-3.0.9-indy.jar,\ |
|
11 |
lib/groovy-datetime-3.0.9-indy.jar,\ |
|
12 |
lib/groovy-dateutil-3.0.9-indy.jar,\ |
|
13 |
lib/groovy-docgenerator-3.0.9-indy.jar,\ |
|
14 |
lib/groovy-groovydoc-3.0.9-indy.jar,\ |
|
15 |
lib/groovy-groovysh-3.0.9-indy.jar,\ |
|
16 |
lib/groovy-jaxb-3.0.9-indy.jar,\ |
|
17 |
lib/groovy-jmx-3.0.9-indy.jar,\ |
|
18 |
lib/groovy-json-3.0.9-indy.jar,\ |
|
19 |
lib/groovy-jsr223-3.0.9-indy.jar,\ |
|
20 |
lib/groovy-macro-3.0.9-indy.jar,\ |
|
21 |
lib/groovy-nio-3.0.9-indy.jar,\ |
|
22 |
lib/groovy-servlet-3.0.9-indy.jar,\ |
|
23 |
lib/groovy-sql-3.0.9-indy.jar,\ |
|
24 |
lib/groovy-swing-3.0.9-indy.jar,\ |
|
25 |
lib/groovy-templates-3.0.9-indy.jar,\ |
|
26 |
lib/groovy-test-3.0.9-indy.jar,\ |
|
27 |
lib/groovy-test-junit5-3.0.9-indy.jar,\ |
|
28 |
lib/groovy-testng-3.0.9-indy.jar,\ |
|
29 |
lib/groovy-xml-3.0.9-indy.jar,\ |
|
30 |
lib/groovy-yaml-3.0.9-indy.jar |
TXM/trunk/org.txm.libs.groovy-all/.classpath (revision 3497) | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
<classpath> |
3 |
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> |
|
4 |
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> |
|
5 |
<classpathentry exported="true" |
|
6 |
kind="lib" |
|
7 |
path="lib/groovy-2.5.0-indy.jar" |
|
8 |
sourcepath="/home/mdecorde/workspace047/org.txm.libs.groovy-all/src/apache-groovy-src-2.5.2.zip"/> |
|
9 |
<classpathentry exported="true" kind="lib" path="lib/groovy-ant-2.5.0-indy.jar"/> |
|
10 |
<classpathentry exported="true" kind="lib" path="lib/groovy-bsf-2.5.0-indy.jar"/> |
|
11 |
<classpathentry exported="true" |
|
12 |
kind="lib" |
|
13 |
path="lib/groovy-cli-commons-2.5.0-indy.jar"/> |
|
14 |
<classpathentry exported="true" |
|
15 |
kind="lib" |
|
16 |
path="lib/groovy-cli-picocli-2.5.0-indy.jar"/> |
|
17 |
<classpathentry exported="true" kind="lib" path="lib/groovy-console-2.5.0-indy.jar"/> |
|
18 |
<classpathentry exported="true" |
|
19 |
kind="lib" |
|
20 |
path="lib/groovy-datetime-2.5.0-indy.jar"/> |
|
21 |
<classpathentry exported="true" |
|
22 |
kind="lib" |
|
23 |
path="lib/groovy-dateutil-2.5.0-indy.jar"/> |
|
24 |
<classpathentry exported="true" |
|
25 |
kind="lib" |
|
26 |
path="lib/groovy-docgenerator-2.5.0-indy.jar"/> |
|
27 |
<classpathentry exported="true" |
|
28 |
kind="lib" |
|
29 |
path="lib/groovy-groovydoc-2.5.0-indy.jar"/> |
|
30 |
<classpathentry exported="true" |
|
31 |
kind="lib" |
|
32 |
path="lib/groovy-groovysh-2.5.0-indy.jar"/> |
|
33 |
<classpathentry exported="true" kind="lib" path="lib/groovy-jmx-2.5.0-indy.jar"/> |
|
34 |
<classpathentry exported="true" kind="lib" path="lib/groovy-json-2.5.0-indy.jar"/> |
|
35 |
<classpathentry exported="true" |
|
36 |
kind="lib" |
|
37 |
path="lib/groovy-json-direct-2.5.0-indy.jar"/> |
|
38 |
<classpathentry exported="true" kind="lib" path="lib/groovy-jsr223-2.5.0-indy.jar"/> |
|
39 |
<classpathentry exported="true" kind="lib" path="lib/groovy-macro-2.5.0-indy.jar"/> |
|
40 |
<classpathentry exported="true" kind="lib" path="lib/groovy-nio-2.5.0-indy.jar"/> |
|
41 |
<classpathentry exported="true" kind="lib" path="lib/groovy-servlet-2.5.0-indy.jar"/> |
|
42 |
<classpathentry exported="true" kind="lib" path="lib/groovy-sql-2.5.0-indy.jar"/> |
|
43 |
<classpathentry exported="true" kind="lib" path="lib/groovy-swing-2.5.0-indy.jar"/> |
|
44 |
<classpathentry exported="true" |
|
45 |
kind="lib" |
|
46 |
path="lib/groovy-templates-2.5.0-indy.jar"/> |
|
47 |
<classpathentry exported="true" kind="lib" path="lib/groovy-test-2.5.0-indy.jar"/> |
|
48 |
<classpathentry exported="true" |
|
49 |
kind="lib" |
|
50 |
path="lib/groovy-test-junit5-2.5.0-indy.jar"/> |
|
51 |
<classpathentry exported="true" kind="lib" path="lib/groovy-testng-2.5.0-indy.jar"/> |
|
52 |
<classpathentry exported="true" kind="lib" path="lib/groovy-xml-2.5.0-indy.jar"/> |
|
53 |
<classpathentry kind="output" path="bin"/> |
|
54 |
</classpath> |
|
3 |
<classpathentry exported="true" kind="lib" path="lib/groovy-3.0.9-indy.jar"/> |
|
4 |
<classpathentry exported="true" kind="lib" path="lib/groovy-ant-3.0.9-indy.jar"/> |
|
5 |
<classpathentry exported="true" kind="lib" path="lib/groovy-astbuilder-3.0.9-indy.jar"/> |
|
6 |
<classpathentry exported="true" kind="lib" path="lib/groovy-bsf-3.0.9-indy.jar"/> |
|
7 |
<classpathentry exported="true" kind="lib" path="lib/groovy-cli-commons-3.0.9-indy.jar"/> |
|
8 |
<classpathentry exported="true" kind="lib" path="lib/groovy-cli-picocli-3.0.9-indy.jar"/> |
|
9 |
<classpathentry exported="true" kind="lib" path="lib/groovy-console-3.0.9-indy.jar"/> |
|
10 |
<classpathentry exported="true" kind="lib" path="lib/groovy-datetime-3.0.9-indy.jar"/> |
|
11 |
<classpathentry exported="true" kind="lib" path="lib/groovy-dateutil-3.0.9-indy.jar"/> |
|
12 |
<classpathentry exported="true" kind="lib" path="lib/groovy-docgenerator-3.0.9-indy.jar"/> |
|
13 |
<classpathentry exported="true" kind="lib" path="lib/groovy-groovydoc-3.0.9-indy.jar"/> |
|
14 |
<classpathentry exported="true" kind="lib" path="lib/groovy-groovysh-3.0.9-indy.jar"/> |
|
15 |
<classpathentry exported="true" kind="lib" path="lib/groovy-jaxb-3.0.9-indy.jar"/> |
|
16 |
<classpathentry exported="true" kind="lib" path="lib/groovy-jmx-3.0.9-indy.jar"/> |
|
17 |
<classpathentry exported="true" kind="lib" path="lib/groovy-json-3.0.9-indy.jar"/> |
|
18 |
<classpathentry exported="true" kind="lib" path="lib/groovy-jsr223-3.0.9-indy.jar"/> |
|
19 |
<classpathentry exported="true" kind="lib" path="lib/groovy-macro-3.0.9-indy.jar"/> |
|
20 |
<classpathentry exported="true" kind="lib" path="lib/groovy-nio-3.0.9-indy.jar"/> |
|
21 |
<classpathentry exported="true" kind="lib" path="lib/groovy-servlet-3.0.9-indy.jar"/> |
|
22 |
<classpathentry exported="true" kind="lib" path="lib/groovy-sql-3.0.9-indy.jar"/> |
|
23 |
<classpathentry exported="true" kind="lib" path="lib/groovy-swing-3.0.9-indy.jar"/> |
|
24 |
<classpathentry exported="true" kind="lib" path="lib/groovy-templates-3.0.9-indy.jar"/> |
|
25 |
<classpathentry exported="true" kind="lib" path="lib/groovy-test-3.0.9-indy.jar"/> |
|
26 |
<classpathentry exported="true" kind="lib" path="lib/groovy-test-junit5-3.0.9-indy.jar"/> |
|
27 |
<classpathentry exported="true" kind="lib" path="lib/groovy-testng-3.0.9-indy.jar"/> |
|
28 |
<classpathentry exported="true" kind="lib" path="lib/groovy-xml-3.0.9-indy.jar"/> |
|
29 |
<classpathentry exported="true" kind="lib" path="lib/groovy-yaml-3.0.9-indy.jar"/> |
|
30 |
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> |
|
31 |
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> |
|
32 |
<classpathentry kind="output" path="bin"/> |
|
33 |
</classpath> |
TXM/trunk/org.txm.libs.groovy-all/META-INF/MANIFEST.MF (revision 3497) | ||
---|---|---|
1 | 1 |
Manifest-Version: 1.0 |
2 | 2 |
Bundle-SymbolicName: org.txm.libs.groovy-all |
3 |
Export-Package: groovy.beans,groovy.cli,groovy.cli.commons,groovy.cli. |
|
4 |
picocli,groovy.grape,groovy.inspect,groovy.inspect.swingui,groovy.io, |
|
5 |
groovy.jmx.builder,groovy.json,groovy.junit5.plugin,groovy.lang,groov |
|
6 |
y.mock.interceptor,groovy.model,groovy.security,groovy.servlet,groovy |
|
7 |
.sql,groovy.swing,groovy.swing.binding,groovy.swing.factory,groovy.sw |
|
8 |
ing.impl,groovy.test,groovy.text,groovy.text.markup,groovy.time,groov |
|
9 |
y.transform,groovy.transform.builder,groovy.transform.options,groovy. |
|
10 |
transform.stc,groovy.ui,groovy.ui.icons,groovy.ui.text,groovy.ui.view |
|
11 |
,groovy.util,groovy.util.logging,groovy.util.slurpersupport,groovy.xm |
|
12 |
l,groovy.xml.dom,groovy.xml.jaxb,groovy.xml.streamingmarkupsupport,gr |
|
13 |
oovyjarjarantlr,groovyjarjarantlr.ASdebug,groovyjarjarantlr.actions.c |
|
14 |
pp,groovyjarjarantlr.actions.csharp,groovyjarjarantlr.actions.java,gr |
|
15 |
oovyjarjarantlr.actions.python,groovyjarjarantlr.build,groovyjarjaran |
|
16 |
tlr.collections,groovyjarjarantlr.collections.impl,groovyjarjarantlr. |
|
17 |
debug,groovyjarjarantlr.debug.misc,groovyjarjarantlr.preprocessor,gro |
|
18 |
ovyjarjarasm.asm,groovyjarjarasm.asm.commons,groovyjarjarasm.asm.sign |
|
19 |
ature,groovyjarjarasm.asm.tree,groovyjarjarasm.asm.util,groovyjarjarc |
|
20 |
ommonscli,groovyjarjarpicocli,groovyjarjarpicocli.groovy,org.apache.g |
|
21 |
roovy.ast.tools,org.apache.groovy.datetime.extensions,org.apache.groo |
|
22 |
vy.dateutil.extensions,org.apache.groovy.docgenerator,org.apache.groo |
|
23 |
vy.internal.metaclass,org.apache.groovy.internal.util,org.apache.groo |
|
24 |
vy.io,org.apache.groovy.json,org.apache.groovy.json.internal,org.apac |
|
25 |
he.groovy.jsondirect,org.apache.groovy.lang.annotation,org.apache.gro |
|
26 |
ovy.metaclass,org.apache.groovy.plugin,org.apache.groovy.plugin.testn |
|
27 |
g,org.apache.groovy.sql.extensions,org.apache.groovy.util,org.apache. |
|
28 |
groovy.util.concurrentlinkedhashmap,org.codehaus.groovy,org.codehaus. |
|
29 |
groovy.ant,org.codehaus.groovy.antlr,org.codehaus.groovy.antlr.java,o |
|
30 |
rg.codehaus.groovy.antlr.parser,org.codehaus.groovy.antlr.treewalker, |
|
31 |
org.codehaus.groovy.ast,org.codehaus.groovy.ast.builder,org.codehaus. |
|
32 |
groovy.ast.decompiled,org.codehaus.groovy.ast.expr,org.codehaus.groov |
|
33 |
y.ast.stmt,org.codehaus.groovy.ast.tools,org.codehaus.groovy.binding, |
|
34 |
org.codehaus.groovy.bsf,org.codehaus.groovy.classgen,org.codehaus.gro |
|
35 |
ovy.classgen.asm,org.codehaus.groovy.classgen.asm.indy,org.codehaus.g |
|
36 |
roovy.classgen.asm.indy.sc,org.codehaus.groovy.classgen.asm.sc,org.co |
|
37 |
dehaus.groovy.classgen.asm.util,org.codehaus.groovy.control,org.codeh |
|
38 |
aus.groovy.control.customizers,org.codehaus.groovy.control.customizer |
|
39 |
s.builder,org.codehaus.groovy.control.io,org.codehaus.groovy.control. |
|
40 |
messages,org.codehaus.groovy.groovydoc,org.codehaus.groovy.jsr223,org |
|
41 |
.codehaus.groovy.macro.matcher,org.codehaus.groovy.macro.matcher.inte |
|
42 |
rnal,org.codehaus.groovy.macro.methods,org.codehaus.groovy.macro.runt |
|
43 |
ime,org.codehaus.groovy.macro.transform,org.codehaus.groovy.plugin,or |
|
44 |
g.codehaus.groovy.reflection,org.codehaus.groovy.reflection.android,o |
|
45 |
rg.codehaus.groovy.reflection.stdclasses,org.codehaus.groovy.reflecti |
|
46 |
on.v7,org.codehaus.groovy.runtime,org.codehaus.groovy.runtime.callsit |
|
47 |
e,org.codehaus.groovy.runtime.dgmimpl,org.codehaus.groovy.runtime.dgm |
|
48 |
impl.arrays,org.codehaus.groovy.runtime.m12n,org.codehaus.groovy.runt |
|
49 |
ime.memoize,org.codehaus.groovy.runtime.metaclass,org.codehaus.groovy |
|
50 |
.runtime.powerassert,org.codehaus.groovy.runtime.typehandling,org.cod |
|
51 |
ehaus.groovy.runtime.wrappers,org.codehaus.groovy.syntax,org.codehaus |
|
52 |
.groovy.testng,org.codehaus.groovy.tools,org.codehaus.groovy.tools.as |
|
53 |
t,org.codehaus.groovy.tools.groovydoc,org.codehaus.groovy.tools.groov |
|
54 |
ydoc.gstringTemplates,org.codehaus.groovy.tools.groovydoc.gstringTemp |
|
55 |
lates.classLevel,org.codehaus.groovy.tools.groovydoc.gstringTemplates |
|
56 |
.packageLevel,org.codehaus.groovy.tools.groovydoc.gstringTemplates.to |
|
57 |
pLevel,org.codehaus.groovy.tools.gse,org.codehaus.groovy.tools.javac, |
|
58 |
org.codehaus.groovy.tools.shell,org.codehaus.groovy.tools.shell.comma |
|
59 |
nds,org.codehaus.groovy.tools.shell.completion,org.codehaus.groovy.to |
|
60 |
ols.shell.util,org.codehaus.groovy.tools.xml,org.codehaus.groovy.tran |
|
61 |
sform,org.codehaus.groovy.transform.sc,org.codehaus.groovy.transform. |
|
62 |
sc.transformers,org.codehaus.groovy.transform.stc,org.codehaus.groovy |
|
63 |
.transform.tailrec,org.codehaus.groovy.transform.trait,org.codehaus.g |
|
64 |
roovy.util,org.codehaus.groovy.vmplugin,org.codehaus.groovy.vmplugin. |
|
65 |
v5,org.codehaus.groovy.vmplugin.v6,org.codehaus.groovy.vmplugin.v7,or |
|
66 |
g.codehaus.groovy.vmplugin.v8 |
|
3 |
Export-Package: groovy.ant, |
|
4 |
groovy.beans, |
|
5 |
groovy.cli, |
|
6 |
groovy.cli.commons, |
|
7 |
groovy.cli.internal, |
|
8 |
groovy.cli.picocli, |
|
9 |
groovy.console, |
|
10 |
groovy.console.ui, |
|
11 |
groovy.console.ui.text, |
|
12 |
groovy.console.ui.view, |
|
13 |
groovy.grape, |
|
14 |
groovy.inspect, |
|
15 |
groovy.inspect.swingui, |
|
16 |
groovy.io, |
|
17 |
groovy.jmx, |
|
18 |
groovy.jmx.builder, |
|
19 |
groovy.json, |
|
20 |
groovy.junit5.plugin, |
|
21 |
groovy.lang, |
|
22 |
groovy.lang.groovydoc, |
|
23 |
groovy.mock.interceptor, |
|
24 |
groovy.model, |
|
25 |
groovy.namespace, |
|
26 |
groovy.security, |
|
27 |
groovy.servlet, |
|
28 |
groovy.sql, |
|
29 |
groovy.swing, |
|
30 |
groovy.swing.binding, |
|
31 |
groovy.swing.factory, |
|
32 |
groovy.swing.impl, |
|
33 |
groovy.swing.model, |
|
34 |
groovy.swing.table, |
|
35 |
groovy.test, |
|
36 |
groovy.text, |
|
37 |
groovy.text.markup, |
|
38 |
groovy.time, |
|
39 |
groovy.transform, |
|
40 |
groovy.transform.builder, |
|
41 |
groovy.transform.options, |
|
42 |
groovy.transform.stc, |
|
43 |
groovy.ui, |
|
44 |
groovy.ui.text, |
|
45 |
groovy.ui.view, |
|
46 |
groovy.util, |
|
47 |
groovy.util.logging, |
|
48 |
groovy.util.slurpersupport, |
|
49 |
groovy.xml, |
|
50 |
groovy.xml.dom, |
|
51 |
groovy.xml.markupsupport, |
|
52 |
groovy.xml.slurpersupport, |
|
53 |
groovy.xml.streamingmarkupsupport, |
|
54 |
groovy.yaml, |
|
55 |
groovyjarjarantlr, |
|
56 |
groovyjarjarantlr.ASdebug, |
|
57 |
groovyjarjarantlr.actions.cpp, |
|
58 |
groovyjarjarantlr.actions.csharp, |
|
59 |
groovyjarjarantlr.actions.java, |
|
60 |
groovyjarjarantlr.actions.python, |
|
61 |
groovyjarjarantlr.build, |
|
62 |
groovyjarjarantlr.collections, |
|
63 |
groovyjarjarantlr.collections.impl, |
|
64 |
groovyjarjarantlr.debug, |
|
65 |
groovyjarjarantlr.debug.misc, |
|
66 |
groovyjarjarantlr.preprocessor, |
|
67 |
groovyjarjarantlr4.runtime, |
|
68 |
groovyjarjarantlr4.runtime.debug, |
|
69 |
groovyjarjarantlr4.runtime.misc, |
|
70 |
groovyjarjarantlr4.runtime.tree, |
|
71 |
groovyjarjarantlr4.v4, |
|
72 |
groovyjarjarantlr4.v4.analysis, |
|
73 |
groovyjarjarantlr4.v4.automata, |
|
74 |
groovyjarjarantlr4.v4.codegen, |
|
75 |
groovyjarjarantlr4.v4.codegen.model, |
|
76 |
groovyjarjarantlr4.v4.codegen.model.chunk, |
|
77 |
groovyjarjarantlr4.v4.codegen.model.decl, |
|
78 |
groovyjarjarantlr4.v4.codegen.target, |
|
79 |
groovyjarjarantlr4.v4.gui, |
|
80 |
groovyjarjarantlr4.v4.misc, |
|
81 |
groovyjarjarantlr4.v4.parse, |
|
82 |
groovyjarjarantlr4.v4.runtime, |
|
83 |
groovyjarjarantlr4.v4.runtime.atn, |
|
84 |
groovyjarjarantlr4.v4.runtime.dfa, |
|
85 |
groovyjarjarantlr4.v4.runtime.misc, |
|
86 |
groovyjarjarantlr4.v4.runtime.tree, |
|
87 |
groovyjarjarantlr4.v4.runtime.tree.pattern, |
|
88 |
groovyjarjarantlr4.v4.runtime.tree.xpath, |
|
89 |
groovyjarjarantlr4.v4.semantics, |
|
90 |
groovyjarjarantlr4.v4.tool, |
|
91 |
groovyjarjarantlr4.v4.tool.ast, |
|
92 |
groovyjarjarantlr4.v4.unicode, |
|
93 |
groovyjarjarasm.asm, |
|
94 |
groovyjarjarasm.asm.commons, |
|
95 |
groovyjarjarasm.asm.signature, |
|
96 |
groovyjarjarasm.asm.tree, |
|
97 |
groovyjarjarasm.asm.util, |
|
98 |
groovyjarjarpicocli, |
|
99 |
org.apache.groovy.antlr, |
|
100 |
org.apache.groovy.ast.builder, |
|
101 |
org.apache.groovy.ast.tools, |
|
102 |
org.apache.groovy.datetime.extensions, |
|
103 |
org.apache.groovy.dateutil.extensions, |
|
104 |
org.apache.groovy.docgenerator, |
|
105 |
org.apache.groovy.groovydoc.tools, |
|
106 |
org.apache.groovy.groovysh, |
|
107 |
org.apache.groovy.groovysh.antlr4, |
|
108 |
org.apache.groovy.groovysh.commands, |
|
109 |
org.apache.groovy.groovysh.completion, |
|
110 |
org.apache.groovy.groovysh.completion.antlr4, |
|
111 |
org.apache.groovy.groovysh.util, |
|
112 |
org.apache.groovy.groovysh.util.antlr4, |
|
113 |
org.apache.groovy.internal.metaclass, |
|
114 |
org.apache.groovy.internal.util, |
|
115 |
org.apache.groovy.io, |
|
116 |
org.apache.groovy.jaxb.extensions, |
|
117 |
org.apache.groovy.json, |
|
118 |
org.apache.groovy.json.internal, |
|
119 |
org.apache.groovy.lang.annotation, |
|
120 |
org.apache.groovy.metaclass, |
|
121 |
org.apache.groovy.nio.extensions, |
|
122 |
org.apache.groovy.nio.runtime, |
|
123 |
org.apache.groovy.parser.antlr4, |
|
124 |
org.apache.groovy.parser.antlr4.internal, |
|
125 |
org.apache.groovy.parser.antlr4.internal.atnmanager, |
|
126 |
org.apache.groovy.parser.antlr4.util, |
|
127 |
org.apache.groovy.plugin, |
|
128 |
org.apache.groovy.plugin.testng, |
|
129 |
org.apache.groovy.sql.extensions, |
|
130 |
org.apache.groovy.swing.binding, |
|
131 |
org.apache.groovy.swing.extensions, |
|
132 |
org.apache.groovy.test, |
|
133 |
org.apache.groovy.test.transform, |
|
134 |
org.apache.groovy.util, |
|
135 |
org.apache.groovy.util.concurrent, |
|
136 |
org.apache.groovy.util.concurrent.concurrentlinkedhashmap, |
|
137 |
org.apache.groovy.xml.extensions, |
|
138 |
org.apache.groovy.xml.tools, |
|
139 |
org.apache.groovy.yaml.util, |
|
140 |
org.codehaus.groovy.ant, |
|
141 |
org.codehaus.groovy.antlr, |
|
142 |
org.codehaus.groovy.antlr.java, |
|
143 |
org.codehaus.groovy.antlr.parser, |
|
144 |
org.codehaus.groovy.antlr.treewalker, |
|
145 |
org.codehaus.groovy.ast, |
|
146 |
org.codehaus.groovy.ast.builder, |
|
147 |
org.codehaus.groovy.ast.decompiled, |
|
148 |
org.codehaus.groovy.ast.expr, |
|
149 |
org.codehaus.groovy.ast.stmt, |
|
150 |
org.codehaus.groovy.ast.tools, |
|
151 |
org.codehaus.groovy.binding, |
|
152 |
org.codehaus.groovy.bsf, |
|
153 |
org.codehaus.groovy.classgen, |
|
154 |
org.codehaus.groovy.classgen.asm, |
|
155 |
org.codehaus.groovy.classgen.asm.indy, |
|
156 |
org.codehaus.groovy.classgen.asm.indy.sc, |
|
157 |
org.codehaus.groovy.classgen.asm.sc, |
|
158 |
org.codehaus.groovy.classgen.asm.util, |
|
159 |
org.codehaus.groovy.control, |
|
160 |
org.codehaus.groovy.control.customizers, |
|
161 |
org.codehaus.groovy.control.customizers.builder, |
|
162 |
org.codehaus.groovy.control.io, |
|
163 |
org.codehaus.groovy.control.messages, |
|
164 |
org.codehaus.groovy.groovydoc, |
|
165 |
org.codehaus.groovy.jsr223, |
|
166 |
org.codehaus.groovy.macro.matcher, |
|
167 |
org.codehaus.groovy.macro.matcher.internal, |
|
168 |
org.codehaus.groovy.macro.methods, |
|
169 |
org.codehaus.groovy.macro.runtime, |
|
170 |
org.codehaus.groovy.macro.transform, |
|
171 |
org.codehaus.groovy.plugin, |
|
172 |
org.codehaus.groovy.reflection, |
|
173 |
org.codehaus.groovy.reflection.android, |
|
174 |
org.codehaus.groovy.reflection.stdclasses, |
|
175 |
org.codehaus.groovy.reflection.v7, |
|
176 |
org.codehaus.groovy.runtime, |
|
177 |
org.codehaus.groovy.runtime.callsite, |
|
178 |
org.codehaus.groovy.runtime.dgmimpl, |
|
179 |
org.codehaus.groovy.runtime.dgmimpl.arrays, |
|
180 |
org.codehaus.groovy.runtime.m12n, |
|
181 |
org.codehaus.groovy.runtime.memoize, |
|
182 |
org.codehaus.groovy.runtime.metaclass, |
|
183 |
org.codehaus.groovy.runtime.powerassert, |
|
184 |
org.codehaus.groovy.runtime.typehandling, |
|
185 |
org.codehaus.groovy.runtime.wrappers, |
|
186 |
org.codehaus.groovy.syntax, |
|
187 |
org.codehaus.groovy.testng, |
|
188 |
org.codehaus.groovy.tools, |
|
189 |
org.codehaus.groovy.tools.ast, |
|
190 |
org.codehaus.groovy.tools.groovydoc, |
|
191 |
org.codehaus.groovy.tools.groovydoc.antlr4, |
|
192 |
org.codehaus.groovy.tools.groovydoc.gstringTemplates, |
|
193 |
org.codehaus.groovy.tools.gse, |
|
194 |
org.codehaus.groovy.tools.javac, |
|
195 |
org.codehaus.groovy.tools.shell, |
|
196 |
org.codehaus.groovy.tools.shell.commands, |
|
197 |
org.codehaus.groovy.tools.shell.completion, |
|
198 |
org.codehaus.groovy.tools.shell.util, |
|
199 |
org.codehaus.groovy.tools.xml, |
|
200 |
org.codehaus.groovy.transform, |
|
201 |
org.codehaus.groovy.transform.sc, |
|
202 |
org.codehaus.groovy.transform.sc.transformers, |
|
203 |
org.codehaus.groovy.transform.stc, |
|
204 |
org.codehaus.groovy.transform.tailrec, |
|
205 |
org.codehaus.groovy.transform.trait, |
|
206 |
org.codehaus.groovy.util, |
|
207 |
org.codehaus.groovy.vmplugin, |
|
208 |
org.codehaus.groovy.vmplugin.v5, |
|
209 |
org.codehaus.groovy.vmplugin.v6, |
|
210 |
org.codehaus.groovy.vmplugin.v7, |
|
211 |
org.codehaus.groovy.vmplugin.v8, |
|
212 |
org.codehaus.groovy.vmplugin.v9 |
|
67 | 213 |
Bundle-Name: Groovy-all |
68 | 214 |
Bundle-Version: 2.3.7 |
69 |
Bundle-ClassPath: .,lib/groovy-xml-2.5.0-indy.jar,lib/groovy-2.5.0-ind |
|
70 |
y.jar,lib/groovy-ant-2.5.0-indy.jar,lib/groovy-bsf-2.5.0-indy.jar,lib |
|
71 |
/groovy-cli-commons-2.5.0-indy.jar,lib/groovy-cli-picocli-2.5.0-indy. |
|
72 |
jar,lib/groovy-console-2.5.0-indy.jar,lib/groovy-datetime-2.5.0-indy. |
|
73 |
jar,lib/groovy-dateutil-2.5.0-indy.jar,lib/groovy-docgenerator-2.5.0- |
|
74 |
indy.jar,lib/groovy-groovydoc-2.5.0-indy.jar,lib/groovy-groovysh-2.5. |
|
75 |
0-indy.jar,lib/groovy-jmx-2.5.0-indy.jar,lib/groovy-json-2.5.0-indy.j |
|
76 |
ar,lib/groovy-json-direct-2.5.0-indy.jar,lib/groovy-jsr223-2.5.0-indy |
|
77 |
.jar,lib/groovy-macro-2.5.0-indy.jar,lib/groovy-nio-2.5.0-indy.jar,li |
|
78 |
b/groovy-servlet-2.5.0-indy.jar,lib/groovy-sql-2.5.0-indy.jar,lib/gro |
|
79 |
ovy-swing-2.5.0-indy.jar,lib/groovy-templates-2.5.0-indy.jar,lib/groo |
|
80 |
vy-test-2.5.0-indy.jar,lib/groovy-test-junit5-2.5.0-indy.jar,lib/groo |
|
81 |
vy-testng-2.5.0-indy.jar |
|
215 |
Bundle-ClassPath: ., |
|
216 |
lib/groovy-3.0.9-indy.jar, |
|
217 |
lib/groovy-ant-3.0.9-indy.jar, |
|
218 |
lib/groovy-astbuilder-3.0.9-indy.jar, |
|
219 |
lib/groovy-bsf-3.0.9-indy.jar, |
|
220 |
lib/groovy-cli-commons-3.0.9-indy.jar, |
|
221 |
lib/groovy-cli-picocli-3.0.9-indy.jar, |
|
222 |
lib/groovy-console-3.0.9-indy.jar, |
|
223 |
lib/groovy-datetime-3.0.9-indy.jar, |
|
224 |
lib/groovy-dateutil-3.0.9-indy.jar, |
|
225 |
lib/groovy-docgenerator-3.0.9-indy.jar, |
|
226 |
lib/groovy-groovydoc-3.0.9-indy.jar, |
|
227 |
lib/groovy-groovysh-3.0.9-indy.jar, |
|
228 |
lib/groovy-jaxb-3.0.9-indy.jar, |
|
229 |
lib/groovy-jmx-3.0.9-indy.jar, |
|
230 |
lib/groovy-json-3.0.9-indy.jar, |
|
231 |
lib/groovy-jsr223-3.0.9-indy.jar, |
|
232 |
lib/groovy-macro-3.0.9-indy.jar, |
|
233 |
lib/groovy-nio-3.0.9-indy.jar, |
|
234 |
lib/groovy-servlet-3.0.9-indy.jar, |
|
235 |
lib/groovy-sql-3.0.9-indy.jar, |
|
236 |
lib/groovy-swing-3.0.9-indy.jar, |
|
237 |
lib/groovy-templates-3.0.9-indy.jar, |
|
238 |
lib/groovy-test-3.0.9-indy.jar, |
|
239 |
lib/groovy-test-junit5-3.0.9-indy.jar, |
|
240 |
lib/groovy-testng-3.0.9-indy.jar, |
|
241 |
lib/groovy-xml-3.0.9-indy.jar, |
|
242 |
lib/groovy-yaml-3.0.9-indy.jar |
|
82 | 243 |
Bundle-ManifestVersion: 2 |
83 | 244 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 |
84 | 245 |
Bundle-Vendor: Textometrie.org |
TXM/trunk/org.txm.tigersearch.rcp/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25
|
|
2 |
groovy.compiler.level=30
|
|
3 | 3 |
groovy.script.filters=**/*.dsld,y,**/*.gradle,n |
TXM/trunk/org.txm.setups/.settings/org.eclipse.core.resources.prefs (revision 3497) | ||
---|---|---|
3 | 3 |
encoding//shared/mac/intro_fr.txt=MacRoman |
4 | 4 |
encoding//shared/mac/readme_fr.txt=MacRoman |
5 | 5 |
encoding//shared/win/txm.nsi=ISO-8859-1 |
6 |
encoding//shared/win/txmfunctions.nsi=ISO-8859-1 |
|
6 | 7 |
encoding/SetupMessages_en.properties=UTF-8 |
7 | 8 |
encoding/SetupMessages_fr.properties=UTF-8 |
TXM/trunk/org.txm.core/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25
|
|
2 |
groovy.compiler.level=30
|
|
3 | 3 |
groovy.script.filters=scripts/**/*.groovy,y,src/main/resources/**/*.groovy,y,src/test/resources/**/*.groovy,y |
TXM/trunk/org.txm.core.tests/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25
|
|
2 |
groovy.compiler.level=30
|
|
3 | 3 |
groovy.script.filters=**/*.dsld,y,**/*.gradle,n |
TXM/trunk/org.txm.translate.rcp/.settings/org.eclipse.jdt.groovy.core.prefs (revision 3497) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
groovy.compiler.level=25 |
|
2 |
groovy.compiler.level=30 |
|
3 |
groovy.script.filters=**/*.dsld,y,**/*.gradle,n |
Formats disponibles : Unified diff