2015-11-19 23:47:41 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<groupId>org.vivoweb</groupId>
|
2016-07-06 06:19:51 +01:00
|
|
|
<artifactId>vivo-installer-vivo</artifactId>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-installer</artifactId>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2016-07-06 06:19:51 +01:00
|
|
|
<name>VIVO Install Web App</name>
|
2015-11-19 23:47:41 +00:00
|
|
|
|
2015-11-21 19:17:05 +00:00
|
|
|
<build>
|
2021-02-05 11:56:50 -05:00
|
|
|
<finalName>${app-name}</finalName>
|
2015-11-21 19:17:05 +00:00
|
|
|
<plugins>
|
2016-06-26 15:45:16 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>overlays</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-02-05 11:56:50 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>include-home</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-installer-home</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>tar</type>
|
|
|
|
<destFileName>vivo-home.tar</destFileName>
|
|
|
|
<outputDirectory>${project.build.directory}/home-files</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<archiveClasses>false</archiveClasses>
|
|
|
|
<overlays>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</overlay>
|
|
|
|
<!-- Overlays for multilingual support -->
|
|
|
|
<!-- overlay>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vitro-languages-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</overlay>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-languages-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</overlay -->
|
|
|
|
</overlays>
|
|
|
|
<webResources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/webResources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/home-files/</directory>
|
|
|
|
<targetPath>WEB-INF/resources/home-files/</targetPath>
|
|
|
|
</resource>
|
|
|
|
</webResources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-19 23:47:41 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
2015-11-20 21:21:25 +00:00
|
|
|
<artifactId>vivo-api</artifactId>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
2015-11-20 21:21:25 +00:00
|
|
|
<artifactId>vivo-webapp</artifactId>
|
|
|
|
<type>war</type>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependency>
|
2017-10-07 20:30:16 +01:00
|
|
|
<!-- Dependencies for multilingual support -->
|
|
|
|
<!-- dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vitro-languages-webapp</artifactId>
|
2017-10-21 22:31:05 +01:00
|
|
|
<version>[2.0.0,2.1.0)</version>
|
2017-10-07 20:30:16 +01:00
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-languages-webapp</artifactId>
|
2017-10-21 22:31:05 +01:00
|
|
|
<version>[2.0.0,2.1.0)</version>
|
2017-10-07 20:30:16 +01:00
|
|
|
<type>war</type>
|
|
|
|
</dependency -->
|
2016-07-14 22:47:43 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|