main
zouxk 6 years ago
parent 83335fb52d
commit e22b0c756e

1
.gitignore vendored

@ -23,3 +23,4 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
/bin/

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.connor.jd.plm</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

@ -3,16 +3,17 @@ Bundle-ManifestVersion: 2
Bundle-Name: JDProject Bundle-Name: JDProject
Bundle-SymbolicName: com.connor.jd.plm;singleton:=true Bundle-SymbolicName: com.connor.jd.plm;singleton:=true
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Require-Bundle: org.eclipse.ui;bundle-version="3.108.0", Require-Bundle: org.eclipse.ui;bundle-version="3.111.0",
com.teamcenter.rac.common;bundle-version="12000.1.0", com.teamcenter.rac.common;bundle-version="12000.2.0",
com.teamcenter.rac.tcapps;bundle-version="12000.1.0", com.teamcenter.rac.tcapps;bundle-version="12000.2.0",
com.teamcenter.rac.util;bundle-version="12000.1.0", com.teamcenter.rac.util;bundle-version="12000.2.0",
com.teamcenter.rac.aifrcp;bundle-version="12000.1.0", com.teamcenter.rac.aifrcp;bundle-version="12000.2.0",
com.teamcenter.rac.ui.commands;bundle-version="12000.1.0", com.teamcenter.rac.ui.commands;bundle-version="12000.2.0",
com.teamcenter.rac.kernel;bundle-version="12000.1.0", com.teamcenter.rac.kernel;bundle-version="12000.2.0",
com.teamcenter.rac.ui.views;bundle-version="12000.1.0", com.teamcenter.rac.ui.views;bundle-version="12000.2.0",
org.eclipse.core.runtime;bundle-version="3.12.0", org.eclipse.core.runtime;bundle-version="3.15.100",
org.eclipse.ui.forms;bundle-version="3.7.0" org.eclipse.ui.forms;bundle-version="3.7.400",
com.teamcenter.rac.schedule;bundle-version="12000.2.0"
Automatic-Module-Name: JDProject Automatic-Module-Name: JDProject
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: com.connor.jd.plm.action, Export-Package: com.connor.jd.plm.action,
@ -25,7 +26,10 @@ Export-Package: com.connor.jd.plm.action,
Import-Package: com.teamcenter.services, Import-Package: com.teamcenter.services,
com.teamcenter.services.rac, com.teamcenter.services.rac,
com.teamcenter.services.rac.core, com.teamcenter.services.rac.core,
com.teamcenter.services.rac.core._2008_06 com.teamcenter.services.rac.core._2008_06,
org.apache.commons.httpclient,
org.apache.commons.httpclient.methods,
org.apache.commons.httpclient.params
Bundle-ClassPath: ., Bundle-ClassPath: .,
lib/fastjson-1.2.9.jar, lib/fastjson-1.2.9.jar,
lib/hutool-all-5.0.7.jar, lib/hutool-all-5.0.7.jar,

Loading…
Cancel
Save