From e07b30df85c687a749268adf37f65345c86038fa Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Tue, 7 Apr 2015 06:57:04 -0400 Subject: [PATCH] removed jaxb Former-commit-id: 5b4dd75c3b11a5b342a59ff33da7b55d4d18b8cd --- .../jaxb/pom/generated/Prerequisites.java | 76 ------------------- 1 file changed, 76 deletions(-) delete mode 100644 dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Prerequisites.java diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Prerequisites.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Prerequisites.java deleted file mode 100644 index a10c79271..000000000 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Prerequisites.java +++ /dev/null @@ -1,76 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST -// - - -package org.owasp.dependencycheck.jaxb.pom.generated; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Describes the prerequisites a project can have. - * - *

Java class for Prerequisites complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Prerequisites">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="maven" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Prerequisites", propOrder = { - -}) -@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") -public class Prerequisites { - - @XmlElement(defaultValue = "2.0") - @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") - protected String maven; - - /** - * Gets the value of the maven property. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") - public String getMaven() { - return maven; - } - - /** - * Sets the value of the maven property. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") - public void setMaven(String value) { - this.maven = value; - } - -}