mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
82 lines
2.1 KiB
XML
82 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<parent>
|
|
<artifactId>gameyfin</artifactId>
|
|
<groupId>de.grimsi</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>gameyfin-frontend</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<frontend-maven-plugin.version>1.12.0</frontend-maven-plugin.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- clean the dist directory used by Angular -->
|
|
<plugin>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<configuration>
|
|
<filesets>
|
|
<fileset>
|
|
<directory>dist</directory>
|
|
</fileset>
|
|
</filesets>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.github.eirslett</groupId>
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
<version>${frontend-maven-plugin.version}</version>
|
|
|
|
<executions>
|
|
<!-- Install node and npm -->
|
|
<execution>
|
|
<id>Install Node and NPM</id>
|
|
<goals>
|
|
<goal>install-node-and-npm</goal>
|
|
</goals>
|
|
<configuration>
|
|
<nodeVersion>v16.16.0</nodeVersion>
|
|
</configuration>
|
|
</execution>
|
|
|
|
<!-- clean install -->
|
|
<execution>
|
|
<id>npm install</id>
|
|
<goals>
|
|
<goal>npm</goal>
|
|
</goals>
|
|
</execution>
|
|
|
|
<!-- build app -->
|
|
<execution>
|
|
<id>npm run build</id>
|
|
<goals>
|
|
<goal>npm</goal>
|
|
</goals>
|
|
<configuration>
|
|
<arguments>run build --prod</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>./dist/frontend</directory>
|
|
<targetPath>static</targetPath>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|