initialize

This commit is contained in:
Pruefer
2025-06-06 09:15:13 +02:00
commit fa7c2730f1
5817 changed files with 1339670 additions and 0 deletions

34
resources/.classpath Normal file
View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="target/generated-resources/resource"/>
<classpathentry kind="src" path="target/generated-sources/java"/>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>

36
resources/.project Normal file
View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>imsinterfaces-resources-export</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures>
</projectDescription>

View File

@@ -0,0 +1,7 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding//target/generated-resources=UTF-8
encoding//target/generated-sources/java=UTF-8
encoding/<project>=UTF-8

View File

@@ -0,0 +1,8 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.8

View File

@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="imsinterfaces-resources-export">
<wb-resource deploy-path="/" source-path="/src/main/java"/>
<wb-resource deploy-path="/" source-path="/src/main/resources"/>
<wb-resource deploy-path="/" source-path="/target/generated-resources/resource"/>
<wb-resource deploy-path="/" source-path="/target/generated-sources/java"/>
</wb-module>
</project-modules>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<installed facet="java" version="1.8"/>
<installed facet="jst.utility" version="1.0"/>
</faceted-project>

View File

@@ -0,0 +1,2 @@
disabled=06target
eclipse.preferences.version=1

79
resources/pom.xml Normal file
View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces-resources-export</artifactId>
<packaging>jar</packaging>
<name>imsinterfaces-resources-export</name>
<version>${mes.interface.version}</version>
<parent>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces</artifactId>
<version>${mes.interface.version}</version>
</parent>
<build>
<plugins>
<!-- this plugin helps eclipse -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-sources-for-eclipse</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/java/</source>
<source>${project.build.directory}/generated-resources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.itac.tools</groupId>
<artifactId>resource-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>resourceExport</goal>
</goals>
</execution>
</executions>
<configuration>
<interfaceJava>com.itac.resource.Resources</interfaceJava>
<interfaceRoot>Resources</interfaceRoot>
<exportResources>resources-imsinterfaces.zip</exportResources>
<exportStructure>resources-imsinterfaces.xml</exportStructure>
<exportInterfaces>true</exportInterfaces>
<excludeGroups>Resources.Customer,Resources.IMSClients,Resources.ULILoggingMessages,Resources.UnivLoggingMessages,Resources.Timers,Resources.Archival,Resources.APS,Resources.ArchivClient,Resources.BE,Resources.Binaries,Resources.DigiA,Resources.DSP,Resources.Export,Resources.ExternalData,Resources.FKT,Resources.FKTBC,Resources.Hella,Resources.Help,Resources.TRLoggingMessages,Resources.WorkFlow,Resources.VarAddon,Resources.Workorder,Resources.Description,Resources.HtmlTable,Resources.Formatter,Resources.MobileShippingClient,Resources.MobileStoreClient,Resources.OPMMD,Resources.OPMResChartFrame,Resources.OPMResLeitstand,Resources.PDA,Resources.ManufactureClient,Resources.MDA,Resources.MesPanels,Resources.PRClient,Resources.SAP,Resources.OPC,Resources.QM,Resources.RC,Resources.Workframe,Resources.TRInterface,Resources.StammdatenUpload,Resources.SnrPool,Resources.SME,Resources.PartReference,Resources.Schichtkalendar,Resources.SCTClient,Resources.ML.IG,Resources.ServerMainApp,Resources.ServerMsgKeys,Resources.Reporting,Resources.BDE</excludeGroups>
<!-- resourceExport -->
<version>8.00</version>
<locales>de,en,fr</locales>
<exportInterfaces>true</exportInterfaces>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Resource-Location>class:///resources-imsinterfaces.zip</Resource-Location>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>

BIN
resources/project.pj Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1,6 @@
Manifest-Version: 1.0
Built-By: frankp
Resource-Location: class:///resources-imsinterfaces.zip
Build-Jdk: 1.8.0_111
Created-By: Maven Integration for Eclipse

View File

@@ -0,0 +1,7 @@
#Generated by Maven Integration for Eclipse
#Tue Oct 13 14:05:17 CEST 2020
version=9.10.00beta-DEVELOPER
groupId=com.itac.interface
m2e.projectName=imsinterfaces-resources-export
m2e.projectLocation=C\:\\projects_jee\\imsinterface\\mainline\\resources
artifactId=imsinterfaces-resources-export

View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces-resources-export</artifactId>
<packaging>jar</packaging>
<name>imsinterfaces-resources-export</name>
<version>${mes.interface.version}</version>
<parent>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces</artifactId>
<version>${mes.interface.version}</version>
</parent>
<build>
<plugins>
<!-- this plugin helps eclipse -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-sources-for-eclipse</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/java/</source>
<source>${project.build.directory}/generated-resources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.itac.tools</groupId>
<artifactId>resource-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>resourceExport</goal>
</goals>
</execution>
</executions>
<configuration>
<interfaceJava>com.itac.resource.Resources</interfaceJava>
<interfaceRoot>Resources</interfaceRoot>
<exportResources>resources-imsinterfaces.zip</exportResources>
<exportStructure>resources-imsinterfaces.xml</exportStructure>
<exportInterfaces>true</exportInterfaces>
<excludeGroups>Resources.Customer,Resources.IMSClients,Resources.ULILoggingMessages,Resources.UnivLoggingMessages,Resources.Timers,Resources.Archival,Resources.APS,Resources.ArchivClient,Resources.BE,Resources.Binaries,Resources.DigiA,Resources.DSP,Resources.Export,Resources.ExternalData,Resources.FKT,Resources.FKTBC,Resources.Hella,Resources.Help,Resources.TRLoggingMessages,Resources.WorkFlow,Resources.VarAddon,Resources.Workorder,Resources.Description,Resources.HtmlTable,Resources.Formatter,Resources.MobileShippingClient,Resources.MobileStoreClient,Resources.OPMMD,Resources.OPMResChartFrame,Resources.OPMResLeitstand,Resources.PDA,Resources.ManufactureClient,Resources.MDA,Resources.MesPanels,Resources.PRClient,Resources.SAP,Resources.OPC,Resources.QM,Resources.RC,Resources.Workframe,Resources.TRInterface,Resources.StammdatenUpload,Resources.SnrPool,Resources.SME,Resources.PartReference,Resources.Schichtkalendar,Resources.SCTClient,Resources.ML.IG,Resources.ServerMainApp,Resources.ServerMsgKeys,Resources.Reporting,Resources.BDE</excludeGroups>
<!-- resourceExport -->
<version>8.00</version>
<locales>de,en,fr</locales>
<exportInterfaces>true</exportInterfaces>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Resource-Location>class:///resources-imsinterfaces.zip</Resource-Location>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>

Some files were not shown because too many files have changed in this diff Show More