<packaging>bundle</packaging>
<name>Archiva Metadata :: Model</name>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jpa_2.0_spec</artifactId>
+ </dependency>
+ </dependencies>
+
<build>
<plugins>
<plugin>
* under the License.
*/
+import javax.persistence.Entity;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
* @todo considering moving this to a facet - avoid referring to it externally
*/
@XmlRootElement(name = "ciManagement")
+@Entity
public class CiManagement
implements Serializable
{
* under the License.
*/
+import javax.persistence.Entity;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
* @todo considering moving this to a facet - avoid referring to it externally
*/
@XmlRootElement(name = "issueManagement")
+@Entity
public class IssueManagement
implements Serializable
{
* under the License.
*/
+import javax.persistence.Entity;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
@XmlRootElement(name = "organization")
+@Entity
public class Organization
implements Serializable
{
* under the License.
*/
+import javax.persistence.Entity;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
@XmlRootElement(name = "scm")
+@Entity
public class Scm
implements Serializable
{