You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2018/05/31 10:13:23 UTC

[isis] 01/05: ISIS-1841: add -legacy module for integtestsupport

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit f34a7608e1ad97a157a078d84719c8ee71b6d69d
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu May 31 10:16:09 2018 +0200

    ISIS-1841: add -legacy module for integtestsupport
    
    Task-Url: https://issues.apache.org/jira/browse/ISIS-1841
---
 core/legacy/integtestsupport-legacy/pom.xml   | 121 ++++++++++++++++++++++++++
 core/legacy/integtestsupport-legacy/test.data |   5 ++
 2 files changed, 126 insertions(+)

diff --git a/core/legacy/integtestsupport-legacy/pom.xml b/core/legacy/integtestsupport-legacy/pom.xml
new file mode 100644
index 0000000..009a12e
--- /dev/null
+++ b/core/legacy/integtestsupport-legacy/pom.xml
@@ -0,0 +1,121 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+         http://www.apache.org/licenses/LICENSE-2.0
+         
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<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>
+
+	<parent>
+		<groupId>org.apache.isis.core</groupId>
+		<artifactId>isis</artifactId>
+        <version>${revision}</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
+	<artifactId>isis-core-integtestsupport-legacy</artifactId>
+	<name>Apache Isis Integration Testing Support (Legacy)</name>
+
+    <properties>
+        <jar-plugin.automaticModuleName>org.apache.isis.core.integtestsupport-legacy</jar-plugin.automaticModuleName>
+        <git-plugin.propertiesDir>org/apache/isis/core/legacy/integtestsupport-legacy</git-plugin.propertiesDir>
+    </properties>
+
+    <dependencies>
+	
+	
+		<!-- INHERIT FROM NON LEGACY SIBLING -->
+
+		<dependency>
+			<groupId>org.apache.isis.core</groupId>
+			<artifactId>isis-core-integtestsupport</artifactId>
+			<scope>compile</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.isis.core</groupId>
+			<artifactId>isis-core-integtestsupport</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
+    
+		<!-- JDO API (non transient, provided by plugin) -->
+        <dependency>
+            <groupId>javax.jdo</groupId>
+            <artifactId>jdo-api</artifactId>
+            <version>${jdo-api.version}</version>
+            <!-- provided by plugins -->
+            <scope>provided</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>isis-core-unittestsupport</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>isis-core-specsupport</artifactId>
+        </dependency>
+
+		<!-- JUPITER -->
+		<dependency>
+			<!-- JUnit API for writing tests and extensions -->
+			<groupId>org.junit.jupiter</groupId>
+			<artifactId>junit-jupiter-api</artifactId>
+		</dependency>
+		<dependency>
+			<!-- implementation of the JUnit Jupiter test engine -->
+			<groupId>org.junit.jupiter</groupId>
+			<artifactId>junit-jupiter-engine</artifactId>
+		</dependency>
+		<dependency>
+			<!-- support for unit tests that use JUnit 4 or JUnit 3 -->
+			<groupId>org.junit.vintage</groupId>
+			<artifactId>junit-vintage-engine</artifactId>
+		</dependency>
+
+        <dependency>
+            <groupId>org.jmock</groupId>
+            <artifactId>jmock</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.jmock</groupId>
+            <artifactId>jmock-junit4</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>isis-core-security</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>isis-core-runtime</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>isis-core-wrapper</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+
+	</dependencies>
+</project>
diff --git a/core/legacy/integtestsupport-legacy/test.data b/core/legacy/integtestsupport-legacy/test.data
new file mode 100644
index 0000000..78b3ff7
--- /dev/null
+++ b/core/legacy/integtestsupport-legacy/test.data
@@ -0,0 +1,5 @@
+org.apache.isis.core.tck.dom.refs.SimpleEntity#4
+  date: 08-Mar-2010 13:32
+  name: Fred Smith
+  nullable: 
+  size: 0

-- 
To stop receiving notification emails like this one, please contact
ahuber@apache.org.