Skip to content
This repository was archived by the owner on Nov 2, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 8 additions & 1 deletion src/build-target/build-target.target
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?><target name="A-RTEGEN tuned by PizzaFactory" sequenceNumber="7016">
<?pde version="3.8"?><target name="A-RTEGEN tuned by PizzaFactory" sequenceNumber="7018">
<locations>
<location includeAllPlatforms="true" includeConfigurePhase="false" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="jp.pizzafactory.a_rte.orbit.feature.group" version="1.0.1.201411160835"/>
Expand Down Expand Up @@ -56,5 +56,12 @@
<unit id="org.apache.commons.lang" version="2.6.0.v201404270220"/>
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20150124073747/repository/"/>
</location>
<location includeAllPlatforms="true" includeConfigurePhase="false" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.sphinx.sdk.feature.group" version="0.8.1.201409171422"/>
<repository location="http://download.eclipse.org/releases/luna/"/>
</location>
<location includeAllPlatforms="true" includeConfigurePhase="false" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.osgi" version="3.10.2.v20150203-1939"/>
</location>
</locations>
</target>
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>jp.pizzafactory.a_rte.model.editor</name>
<name>jp.ac.nagoya_u.is.nces.a_rte.model.edit</name>
<comment></comment>
<projects>
</projects>
Expand Down Expand Up @@ -28,7 +28,7 @@
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>
21 changes: 21 additions & 0 deletions src/jp.ac.nagoya_u.is.nces.a_rte.model.edit/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: jp.ac.nagoya_u.is.nces.a_rte.model.edit;singleton:=true
Bundle-Version: 1.3.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: jp.ac.nagoya_u.is.nces.a_rte.model.ar4x.ecuc.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.ar4x.instance.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.ar4x.m2.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.ar4x.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.rte.ex.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.rte.interaction.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.rte.module.provider,
jp.ac.nagoya_u.is.nces.a_rte.model.rte.provider;uses:="EMFPlugin"
Bundle-Activator: jp.ac.nagoya_u.is.nces.a_rte.model.rte.provider.RteEditPlugin$Implementation$Activator
Require-Bundle: jp.ac.nagoya_u.is.nces.a_rte.model;bundle-version="1.3.0";visibility:=reexport,
org.eclipse.core.runtime;bundle-version="3.10.0",
org.eclipse.emf.edit;bundle-version="2.10.1"
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#

bin.includes = .,\
META-INF/,\
icons/,\
plugin.xml,\
plugin.properties,\
META-INF/
plugin.properties
jars.compile.order = .
source.. = src/
output.. = target/classes/
Loading