From 5886c9a0dbd98cbde6c687af2ff9483abbb236c6 Mon Sep 17 00:00:00 2001 From: "Andreas Penski (init)" Date: Wed, 29 Apr 2020 17:17:16 +0200 Subject: [PATCH] (fix) generate source to target folder --- pom.xml | 35 --------- .../model/daemon/ObjectFactory.java | 77 ------------------- 2 files changed, 112 deletions(-) delete mode 100644 src/generated/java/de/kosit/validationtool/model/daemon/ObjectFactory.java diff --git a/pom.xml b/pom.xml index 022da02..e3e404d 100644 --- a/pom.xml +++ b/pom.xml @@ -145,18 +145,6 @@ - - maven-clean-plugin - 3.1.0 - - - - src/generated/java - false - - - - org.apache.maven.plugins maven-enforcer-plugin @@ -278,28 +266,6 @@ - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.0.0 - - - add-source - generate-sources - - add-source - - - - src/generated/java - - - - - - org.jvnet.jaxb2.maven2 @@ -316,7 +282,6 @@ true src/main/model/xsd src/main/model/binding - src/generated/java false -Xinheritance diff --git a/src/generated/java/de/kosit/validationtool/model/daemon/ObjectFactory.java b/src/generated/java/de/kosit/validationtool/model/daemon/ObjectFactory.java deleted file mode 100644 index b5a58c5..0000000 --- a/src/generated/java/de/kosit/validationtool/model/daemon/ObjectFactory.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 generiert -// Siehe https://javaee.github.io/jaxb-v2/ -// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. -// Generiert: 2020.04.29 um 05:05:04 PM CEST -// - - -package de.kosit.validationtool.model.daemon; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each Java content interface and Java element interface generated in the - * de.kosit.validationtool.model.daemon package. - *

- * An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. - * The Java representation of XML content can consist of schema derived interfaces and classes representing the binding - * of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in - * this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _Health_QNAME = new QName("http://www.xoev.de/de/validator/framework/1/daemon", "health"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: - * de.kosit.validationtool.model.daemon - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link HealthType } - * - */ - public HealthType createHealthType() { - return new HealthType(); - } - - /** - * Create an instance of {@link ApplicationType } - * - */ - public ApplicationType createApplicationType() { - return new ApplicationType(); - } - - /** - * Create an instance of {@link MemoryType } - * - */ - public MemoryType createMemoryType() { - return new MemoryType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HealthType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link HealthType }{@code >} - */ - @XmlElementDecl(namespace = "http://www.xoev.de/de/validator/framework/1/daemon", name = "health") - public JAXBElement createHealth(HealthType value) { - return new JAXBElement(_Health_QNAME, HealthType.class, null, value); - } - -}