Add packaging plugin. 79/20079/1
authorShihyun.kim <shihyun.kim@samsung.com>
Sun, 27 Apr 2014 06:30:53 +0000 (15:30 +0900)
committerShihyun.kim <shihyun.kim@samsung.com>
Sun, 27 Apr 2014 06:30:53 +0000 (15:30 +0900)
commit4cc4d8308acc86e2f57e9cecd212711c936bd9e5
treee0f314e4fe89e0e32a90dfd25f9824ad8d8f2591
parent2037a4a228882055a4cec91e6575794d319531da
Add packaging plugin.

Change-Id: I1a4935864dc0c48a1eb9217101b51339abb1c53b
Signed-off-by: Shihyun.kim <shihyun.kim@samsung.com>
36 files changed:
TPK/org.tizen.tpklib/.classpath [new file with mode: 0644]
TPK/org.tizen.tpklib/.project [new file with mode: 0644]
TPK/org.tizen.tpklib/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
TPK/org.tizen.tpklib/META-INF/MANIFEST.MF [new file with mode: 0644]
TPK/org.tizen.tpklib/build.properties [new file with mode: 0644]
TPK/org.tizen.tpklib/build.xml [new file with mode: 0644]
TPK/org.tizen.tpklib/lib/jarinjar.zip [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/Activator.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/TPK.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/constants/SDKConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/constants/TPKConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/core/TPKSystem.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/ArgumentValidation.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/Command.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/CommandRunner.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/Log.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/PathUtil.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/Platform.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/PropertyParser.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/lib/XmlParser.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/BuildOption.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Exclusion.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Plugin.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/PluginConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/PluginManager.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Property.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Rootstrap.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/RootstrapConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/SBIConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/SDKConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Sign.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Target.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/TargetConstants.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Tool.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/Toolchain.java [new file with mode: 0644]
TPK/org.tizen.tpklib/src/org/tizen/tpklib/model/ToolchainConstants.java [new file with mode: 0644]