update metadata

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3182 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2009-01-21 00:41:32 +00:00
parent e5ca61739d
commit c28e2386f4
6 changed files with 120 additions and 41 deletions

View File

@ -0,0 +1,17 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: DOMO JavaScript Test Plug-in
Bundle-SymbolicName: com.ibm.wala.cast.js.test;singleton:=true
Bundle-Version: 1.0.0
Bundle-ClassPath: test.jar
Bundle-Activator: com.ibm.wala.cast.js.test.JavaScriptTestPlugin
Bundle-Vendor: IBM
Bundle-Localization: plugin
Require-Bundle: com.ibm.wala.cast.js,
com.ibm.wala.cast,
com.ibm.wala.core,
org.eclipse.core.runtime,
com.ibm.wala.core.tests,
org.junit
Bundle-ActivationPolicy: lazy
Export-Package: com.ibm.wala.cast.js.test

View File

@ -2,4 +2,5 @@ source.test.jar = harness-src/,\
examples-src/
output.test.jar = bin/
bin.includes = plugin.xml,\
test.jar
test.jar,\
META-INF/

View File

@ -1,23 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="com.ibm.wala.cast.js.test"
name="DOMO JavaScript Test Plug-in"
version="1.0.0"
provider-name="IBM"
class="com.ibm.wala.cast.js.test.JavaScriptTestPlugin">
<runtime>
<library name="test.jar"/>
</runtime>
<requires>
<import plugin="com.ibm.wala.cast.js"/>
<import plugin="com.ibm.wala.cast"/>
<import plugin="com.ibm.wala.core"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="com.ibm.wala.core.tests"/>
<import plugin="org.junit"/>
</requires>
<plugin>
</plugin>

View File

@ -0,0 +1,94 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: JavaScript Plug-in
Bundle-SymbolicName: com.ibm.wala.cast.js;singleton:=true
Bundle-Version: 1.0.0
Bundle-ClassPath: bin/,
.,
lib/js.jar,
lib/xalan.jar
Bundle-Activator: com.ibm.wala.cast.js.JavaScriptPlugin
Bundle-Vendor: IBM
Bundle-Localization: plugin
Export-Package: com.ibm.wala.cast.js,
com.ibm.wala.cast.js.analysis.typeInference,
com.ibm.wala.cast.js.cfg,
com.ibm.wala.cast.js.client,
com.ibm.wala.cast.js.client.impl,
com.ibm.wala.cast.js.ipa.callgraph,
com.ibm.wala.cast.js.ipa.summaries,
com.ibm.wala.cast.js.loader,
com.ibm.wala.cast.js.ssa,
com.ibm.wala.cast.js.translator,
com.ibm.wala.cast.js.types,
com.ibm.wala.cast.js.util,
java_cup.runtime,
org.apache.bcel,
org.apache.bcel.classfile,
org.apache.bcel.generic,
org.apache.bcel.util,
org.apache.bcel.verifier,
org.apache.bcel.verifier.exc,
org.apache.bcel.verifier.statics,
org.apache.bcel.verifier.structurals,
org.apache.regexp,
org.apache.xalan,
org.apache.xalan.client,
org.apache.xalan.extensions,
org.apache.xalan.lib,
org.apache.xalan.lib.sql,
org.apache.xalan.processor,
org.apache.xalan.res,
org.apache.xalan.serialize,
org.apache.xalan.templates,
org.apache.xalan.trace,
org.apache.xalan.transformer,
org.apache.xalan.xslt,
org.apache.xalan.xsltc,
org.apache.xalan.xsltc.cmdline,
org.apache.xalan.xsltc.cmdline.getopt,
org.apache.xalan.xsltc.compiler,
org.apache.xalan.xsltc.compiler.util,
org.apache.xalan.xsltc.dom,
org.apache.xalan.xsltc.runtime,
org.apache.xalan.xsltc.runtime.output,
org.apache.xalan.xsltc.trax,
org.apache.xalan.xsltc.util,
org.apache.xml.dtm,
org.apache.xml.dtm.ref,
org.apache.xml.dtm.ref.dom2dtm,
org.apache.xml.dtm.ref.sax2dtm,
org.apache.xml.res,
org.apache.xml.utils,
org.apache.xml.utils.res,
org.apache.xpath,
org.apache.xpath.axes,
org.apache.xpath.compiler,
org.apache.xpath.domapi,
org.apache.xpath.functions,
org.apache.xpath.jaxp,
org.apache.xpath.objects,
org.apache.xpath.operations,
org.apache.xpath.patterns,
org.apache.xpath.res,
org.mozilla.classfile,
org.mozilla.javascript,
org.mozilla.javascript.continuations,
org.mozilla.javascript.debug,
org.mozilla.javascript.jdk11,
org.mozilla.javascript.jdk13,
org.mozilla.javascript.optimizer,
org.mozilla.javascript.regexp,
org.mozilla.javascript.serialize,
org.mozilla.javascript.tools,
org.mozilla.javascript.tools.debugger,
org.mozilla.javascript.tools.debugger.downloaded,
org.mozilla.javascript.tools.idswitch,
org.mozilla.javascript.tools.jsc,
org.mozilla.javascript.tools.shell,
org.mozilla.javascript.xml,
org.mozilla.javascript.xmlimpl
Require-Bundle: com.ibm.wala.cast,
com.ibm.wala.core,
com.ibm.wala.cast
Bundle-ActivationPolicy: lazy

View File

@ -2,6 +2,8 @@ output.js.jar = bin/
bin.includes = plugin.xml,\
lib/js.jar,\
lib/xalan.jar,\
.
.,\
META-INF/,\
bin/
source.. = source/,\
dat/

View File

@ -1,24 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="com.ibm.wala.cast.js"
name="JavaScript Plug-in"
version="1.0.0"
provider-name="IBM"
class="com.ibm.wala.cast.js.JavaScriptPlugin">
<runtime>
<library name="lib/js.jar">
<export name="*"/>
</library>
<library name="lib/xalan.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="com.ibm.wala.cast"/>
<import plugin="com.ibm.wala.core"/>
</requires>
<plugin>
</plugin>