main
commit
93b1bb306c
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry exported="true" kind="lib" path="jxl.jar"/>
|
||||
<classpathentry kind="output" path="classes"/>
|
||||
</classpath>
|
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>cn.com.origin.autocodemanager</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>
|
@ -0,0 +1,11 @@
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
@ -0,0 +1,50 @@
|
||||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Autocodemanager Plug-in
|
||||
Bundle-SymbolicName: cn.com.origin.autocodemanager;singleton:=true
|
||||
Bundle-Version: 1.0.0
|
||||
Bundle-Activator: cn.com.origin.autocodemanager.Activator
|
||||
Require-Bundle: org.eclipse.ui;bundle-version="3.8.0",
|
||||
org.eclipse.core.runtime;bundle-version="3.8.0",
|
||||
com.teamcenter.rac.tcapps;bundle-version="10000.1.0",
|
||||
TcSoaClient;bundle-version="10000.1.0",
|
||||
TcSoaCoreRac;bundle-version="10000.1.0",
|
||||
TcSoaCoreTypes;bundle-version="10000.1.0",
|
||||
org.eclipse.ui.forms;bundle-version="3.5.200",
|
||||
org.eclipse.core.expressions;bundle-version="3.4.400",
|
||||
com.teamcenter.rac.common;bundle-version="10000.1.0",
|
||||
com.teamcenter.rac.aifrcp;bundle-version="10000.1.0",
|
||||
com.teamcenter.rac.kernel;bundle-version="10000.1.0",
|
||||
com.teamcenter.rac.util;bundle-version="10000.1.0"
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
Export-Package: cn.com.origin.autocodemanager,
|
||||
cn.com.origin.autocodemanager.common,
|
||||
cn.com.origin.autocodemanager.common.dialog,
|
||||
cn.com.origin.autocodemanager.common.encrypt,
|
||||
cn.com.origin.autocodemanager.common.operations,
|
||||
cn.com.origin.autocodemanager.common.progress,
|
||||
cn.com.origin.autocodemanager.common.tree,
|
||||
cn.com.origin.autocodemanager.common.treetable,
|
||||
cn.com.origin.autocodemanager.export,
|
||||
cn.com.origin.autocodemanager.handlers,
|
||||
cn.com.origin.autocodemanager.imports,
|
||||
cn.com.origin.autocodemanager.views,
|
||||
cn.com.origin.autocodemanager.views.codestyleview,
|
||||
cn.com.origin.autocodemanager.views.codeview,
|
||||
cn.com.origin.autocodemanager.views.listcodeview,
|
||||
cn.com.origin.autocodemanager.views.testview,
|
||||
cn.com.origin.autocodemanager.views.treecodeview,
|
||||
jxl,
|
||||
jxl.biff,
|
||||
jxl.biff.drawing,
|
||||
jxl.biff.formula,
|
||||
jxl.common,
|
||||
jxl.common.log,
|
||||
jxl.demo,
|
||||
jxl.format,
|
||||
jxl.read.biff,
|
||||
jxl.write,
|
||||
jxl.write.biff
|
||||
Bundle-ClassPath: jxl.jar,
|
||||
.
|
||||
Bundle-ActivationPolicy: lazy
|
@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE project [<!ENTITY buildfile SYSTEM "file:./build-user.xml">]>
|
||||
<project name="cn.com.origin.autocodemanager" default="compile" basedir="E:\java\eclipse\code\TC9\ldx\workspace\cn.com.origin.autocodemanager">
|
||||
<property environment="env" />
|
||||
<!-- ********************** 配置开始 ********************* -->
|
||||
|
||||
<!-- 设定发布RAC插件的根目录-->
|
||||
<property name="rac_plugins_des_path" value="G:\project\Code\TC9.1\plugins" />
|
||||
|
||||
<!-- 设定新版系统插件名称-->
|
||||
<property name="des_plugins_name" value="cn.com.origin.autocodemanager_1.0.0.jar" />
|
||||
|
||||
<!-- 设定系统Teacmenter缓存路径-->
|
||||
<property name="tc_cache_dirname" value="C:\Users\Administrator\Teamcenter\RAC" />
|
||||
|
||||
<!-- ********************** 配置结束 ********************* -->
|
||||
<property name="des_plugins_pathname" value="${rac_plugins_des_path}\${des_plugins_name}" />
|
||||
<property name="basedir" value="E:\java\eclipse\code\TC9\ldx\workspace\cn.com.origin.autocodemanager" />
|
||||
|
||||
<target name="copy_plugins">
|
||||
<delete file="${des_plugins_pathname}" quiet="true" />
|
||||
</target>
|
||||
|
||||
<!-- 删除自定义代码的class-->
|
||||
<target name="clean_bin">
|
||||
<delete includeemptydirs="true">
|
||||
<fileset dir="classes" includes="**/*" />
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
<!-- 编译源代码 -->
|
||||
<target name="compile" depends="clean_bin">
|
||||
<ant antfile="build.xml" inheritAll="false" />
|
||||
<echo message="compile over!" />
|
||||
</target>
|
||||
|
||||
<!-- 生成新jar包 -->
|
||||
<target name="make_jar">
|
||||
<jar destfile="${des_plugins_pathname}" whenempty="skip" manifest="META-INF\MANIFEST.MF" update="true">
|
||||
<fileset dir="classes" casesensitive="yes">
|
||||
<include name="**/*.*" />
|
||||
</fileset>
|
||||
<fileset dir="${basedir}">
|
||||
<include name="META-INF\MANIFEST.MF" />
|
||||
<include name="plugin.xml" />
|
||||
<include name="plugin.properties" />
|
||||
<include name="plugin_zh_CN.properties" />
|
||||
<include name="build.properties" />
|
||||
</fileset>
|
||||
</jar>
|
||||
<echo message="make_jar over!" />
|
||||
</target>
|
||||
<!-- 生成新版插件并清除系统缓存 -->
|
||||
<target name="make_plugins" depends="make_jar">
|
||||
<echo message="****************make_plugins ${des_plugins_name} over!**********************" />
|
||||
</target>
|
||||
</project>
|
@ -0,0 +1,6 @@
|
||||
source.. = src/
|
||||
output.. = classes/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
jxl.jar
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue