Commit 0d8e21a4 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ added initial maven support

+ added target platform definition
+ added initial web support
+ added target repository
+ updated gitignore
parent ccbf794d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
**/bin/
**/test-bin/
*/target

.project

0 → 100644
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>de.ugoe.cs.swe.TTCN3.parent</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.m2e.core.maven2Builder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>org.eclipse.m2e.core.maven2Nature</nature>
	</natures>
</projectDescription>
+2 −0
Original line number Diff line number Diff line
eclipse.preferences.version=1
encoding/<project>=UTF-8
+4 −0
Original line number Diff line number Diff line
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
+1 −1
Original line number Diff line number Diff line
@@ -5,5 +5,5 @@
	<classpathentry kind="src" path="xtend-gen"/>
	<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.pde.core.requiredPlugins"/>
	<classpathentry kind="output" path="bin"/>
	<classpathentry kind="output" path="target/classes"/>
</classpath>
Loading