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


The following commit(s) were added to refs/heads/master by this push:
     new 7f6ccb9  ISIS-2340: remove folder (no longer used)
7f6ccb9 is described below

commit 7f6ccb9b8b70b46170c1f9c6395abf53f5654634
Author: Andi Huber <ahu...@apache.org>
AuthorDate: Thu Apr 30 20:18:53 2020 +0200

    ISIS-2340: remove folder (no longer used)
---
 examples/demo-vaadin/pom.xml | 169 -------------------------------------------
 1 file changed, 169 deletions(-)

diff --git a/examples/demo-vaadin/pom.xml b/examples/demo-vaadin/pom.xml
deleted file mode 100644
index 6164b9c..0000000
--- a/examples/demo-vaadin/pom.xml
+++ /dev/null
@@ -1,169 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd";>
-       <modelVersion>4.0.0</modelVersion>
-
-       <parent>
-               <groupId>org.apache.isis.app</groupId>
-               <artifactId>isis-app-starter-parent</artifactId>
-               <version>2.0.0-SNAPSHOT</version>
-               <relativePath>../../starters/pom.xml</relativePath>
-       </parent>
-
-       <groupId>org.apache.isis.examples.apps</groupId>
-       <artifactId>demo-vaadin</artifactId>
-
-       <name>Apache Isis App - Demo (Vaadin)</name>
-
-       <packaging>${packaging.type}</packaging>
-
-       <properties>
-               <packaging.type>jar</packaging.type>
-
-               
<maven-war-plugin.warName>${project.artifactId}</maven-war-plugin.warName>
-
-               <!-- 
-                       Versions of node/npm/vaadin not yet listed in 
isis-app-starter-parent 
-                       still investigating whether there is a way to not 
require these 
-                       with the web-application. Ideally these dependencies 
are just referenced
-                       in module viewer-vaadin-ui. 
-                       See https://nodejs.org/en/download/ for latest node and 
npm (lts) versions 
-                       -->
-               <node.version>v12.14.0</node.version>
-               <npm.version>6.13.1</npm.version>
-               <vaadin.version>14.1.23</vaadin.version>
-
-       </properties>
-
-       <build>
-
-               <plugins>
-                       
-                       <plugin>
-                               <groupId>com.github.eirslett</groupId>
-                               <artifactId>frontend-maven-plugin</artifactId>
-                               <version>1.7.6</version>
-                               <executions>
-
-                                       <execution>
-                                               <id>install node and npm</id>
-                                               <goals>
-                                                       
<goal>install-node-and-npm</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <!-- See 
https://nodejs.org/en/download/ for latest node and npm (lts) 
-                                                               versions -->
-                                                       
<nodeVersion>${node.version}</nodeVersion>
-                                                       
<npmVersion>${npm.version}</npmVersion>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-
-                       </plugin>
-                       
-                       
-                       <plugin>
-                               <groupId>com.vaadin</groupId>
-                               <artifactId>vaadin-maven-plugin</artifactId>
-                               <version>${vaadin.version}</version>
-                               <executions>
-                                       <execution>
-                                               <goals>
-                                                       
<goal>prepare-frontend</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       
-               </plugins>
-
-       </build>
-
-       <dependencies>
-       
-               <dependency>
-                       <groupId>org.apache.isis.examples.apps</groupId>
-                       <artifactId>demo</artifactId>
-                       <version>2.0.0-SNAPSHOT</version>
-                       <type>jar</type>
-               </dependency>
-       
-               <!-- JDK11+ SUPPORT -->
-
-               <dependency>
-                       <groupId>org.apache.isis.mavendeps</groupId>
-                       <artifactId>isis-mavendeps-jdk11</artifactId>
-                       <type>pom</type>
-               </dependency>
-
-               <!-- INCUBATOR: VAADIN VIEWER -->
-
-               <dependency>
-                       <groupId>org.apache.isis.incubator.viewer</groupId>
-                       <artifactId>isis-viewer-vaadin-viewer</artifactId>
-                       <!-- incubator version is not managed by app starter 
bundles -->
-                       <version>2.0.0-SNAPSHOT</version>
-               </dependency>
-
-               <!-- EXTENSIONS -->
-               
-               <dependency>
-                       <groupId>org.apache.isis.valuetypes</groupId>
-                       <artifactId>isis-valuetypes-asciidoc-ui-vaa</artifactId>
-               </dependency>
-
-               <!-- OTHER DEPENDENCIES -->
-
-               <dependency>
-                       <groupId>org.projectlombok</groupId>
-                       <artifactId>lombok</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-               
-       </dependencies>
-
-       <profiles>
-
-               <!-- running: mvn spring-boot:run -->
-               <profile>
-                       <id>package-as-jar</id>
-                       <activation>
-                               <property>
-                                       <name>!package-as-war</name>
-                               </property>
-                       </activation>
-                       <properties>
-                               <packaging.type>jar</packaging.type>
-                       </properties>
-
-                       <build>
-                               <plugins>
-                                       <plugin>
-                                               
<groupId>org.springframework.boot</groupId>
-                                               
<artifactId>spring-boot-maven-plugin</artifactId>
-                                               <executions>
-                                                       <execution>
-                                                               <goals>
-                                                                       
<goal>repackage</goal>
-                                                               </goals>
-                                                       </execution>
-                                               </executions>
-                                       </plugin>
-                               </plugins>
-                       </build>
-               </profile>
-
-       </profiles>
-
-</project>
\ No newline at end of file

Reply via email to