Commit 3f7395ce authored by Philip Makedonski's avatar Philip Makedonski
Browse files

* moved xstream and xpp to target

* added manifest for xpp to convert to bundle
parent a4af9e80
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -45,5 +45,6 @@
			<unit id="io.github.classgraph.classgraph" version="0.0.0"/>
			<repository location="https://download.eclipse.org/tools/orbit/simrel/orbit-aggregation/2024-09"/>
		</location>
		<location path="/Users/philip-iii/Dev/git/t3tools/t3q-clean/de.ugoe.cs.swe.TTCN3.target/lib" type="Directory"/>
	</locations>
</target>
 No newline at end of file
+118 KiB

File added.

No diff preview for this file type.

+613 KiB

File added.

No diff preview for this file type.

+5 −3
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry kind="src" path="src"/>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
		<attributes>
			<attribute name="module" value="true"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
	<classpathentry kind="lib" path="libs/xpp3-1.1.4c.jar"/>
	<classpathentry kind="lib" path="libs/xstream-1.4.15.jar"/>
	<classpathentry kind="output" path="target/classes"/>
</classpath>
+3 −4
Original line number Diff line number Diff line
@@ -4,13 +4,12 @@ Bundle-Name: T3Tools Configuration
Bundle-SymbolicName: de.ugoe.cs.swe.TTCN3Configuration
Bundle-Version: 1.0.0.qualifier
Require-Bundle: org.eclipse.xtext,
 org.apache.commons.cli
 org.apache.commons.cli,
 xstream;visibility:=reexport,
 xpp;visibility:=reexport
Export-Package: de.ugoe.cs.swe.TTCN3Configuration,
 de.ugoe.cs.swe.common,
 de.ugoe.cs.swe.common.exceptions,
 de.ugoe.cs.swe.common.logging
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-ClassPath: libs/xpp3-1.1.4c.jar,
 libs/xstream-1.4.15.jar,
 .
Bundle-Vendor: Software Engineering for Distributed Systems, University of Goettingen
Loading