Commit ebd9c524 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+added initial maven support (graphical and ttcn-3 pending)

parent 656f5032
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -2,3 +2,4 @@ bin/
*._trace
*._trace
*.xtendbin
*.xtendbin
.DS_Store
.DS_Store
target/
 No newline at end of file
+17 −0
Original line number Original line Diff line number Diff line
@@ -10,8 +10,25 @@
			<arguments>
			<arguments>
			</arguments>
			</arguments>
		</buildCommand>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.m2e.core.maven2Builder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	</buildSpec>
	<natures>
	<natures>
		<nature>org.eclipse.m2e.core.maven2Nature</nature>
		<nature>org.eclipse.pde.FeatureNature</nature>
		<nature>org.eclipse.pde.FeatureNature</nature>
	</natures>
	</natures>
	<filteredResources>
		<filter>
			<id>1681464246838</id>
			<name></name>
			<type>30</type>
			<matcher>
				<id>org.eclipse.core.resources.regexFilterMatcher</id>
				<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
			</matcher>
		</filter>
	</filteredResources>
</projectDescription>
</projectDescription>
+17 −0
Original line number Original line Diff line number Diff line
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	
  <modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.etsi.mts.tdl</groupId>
	  	<artifactId>org.etsi.mts.tdl.parent</artifactId>
		<version>1.0.0-SNAPSHOT</version>
		<relativePath>../..</relativePath>
	</parent>

	<artifactId>org.etsi.mts.tdl.constraints.feature</artifactId>
  	<packaging>eclipse-feature</packaging>

	<name>TDL Constraints Feature</name>
</project>
 No newline at end of file
+17 −0
Original line number Original line Diff line number Diff line
@@ -10,8 +10,25 @@
			<arguments>
			<arguments>
			</arguments>
			</arguments>
		</buildCommand>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.m2e.core.maven2Builder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	</buildSpec>
	<natures>
	<natures>
		<nature>org.eclipse.m2e.core.maven2Nature</nature>
		<nature>org.eclipse.pde.FeatureNature</nature>
		<nature>org.eclipse.pde.FeatureNature</nature>
	</natures>
	</natures>
	<filteredResources>
		<filter>
			<id>1681464246849</id>
			<name></name>
			<type>30</type>
			<matcher>
				<id>org.eclipse.core.resources.regexFilterMatcher</id>
				<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
			</matcher>
		</filter>
	</filteredResources>
</projectDescription>
</projectDescription>
+17 −0
Original line number Original line Diff line number Diff line
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	
  <modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.etsi.mts.tdl</groupId>
	  	<artifactId>org.etsi.mts.tdl.parent</artifactId>
		<version>1.0.0-SNAPSHOT</version>
		<relativePath>../..</relativePath>
	</parent>

	<artifactId>org.etsi.mts.tdl.converters.feature</artifactId>
  	<packaging>eclipse-feature</packaging>

	<name>TDL Converters Feature</name>
</project>
 No newline at end of file
Loading