Commit 4f1c3ccd authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ wrapper project (to be moved to extras)

parent bcf3cfd1
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry exported="true" kind="lib" path="lib/antlr4-runtime-4.11.1.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/checker-qual-3.12.0.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/concepts-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/error_prone_annotations-2.11.0.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/failureaccess-1.0.1.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/gson-2.9.1.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/guava-31.1-jre.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/hamcrest-core-1.3.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/j2objc-annotations-1.3.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/jsr305-3.0.2.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/junit-4.11.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/odlext-model-api-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/odlext-parser-support-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/rfc7952-model-api-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/slf4j-api-2.0.6.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/slf4j-simple-2.0.6.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/triemap-1.2.0.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/util-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-common-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-ir-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-model-api-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-model-ri-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-model-spi-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-parser-api-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-parser-reactor-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-parser-rfc7950-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-parser-spi-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-repo-api-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-repo-spi-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-xpath-api-10.0.4.jar"/>
	<classpathentry exported="true" kind="lib" path="lib/yang-xpath-impl-10.0.4.jar"/>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
	<classpathentry kind="output" path="target/classes"/>
</classpath>
+34 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>org.etsi.mts.tdl.yang.tools.wrapper</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.pde.ManifestBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.pde.SchemaBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.m2e.core.maven2Builder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>org.eclipse.m2e.core.maven2Nature</nature>
		<nature>org.eclipse.pde.PluginNature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
	</natures>
</projectDescription>
+2 −0
Original line number Diff line number Diff line
eclipse.preferences.version=1
encoding/<project>=UTF-8
+10 −0
Original line number Diff line number Diff line
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=11
+4 −0
Original line number Diff line number Diff line
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
Loading