Files
gameyfin/frontend/pom.xml
T
Simon 856b634f15 Update Angular to v17 (#233)
* Update node.js to 20.11.0
Update Typescript to 5.3.3
Update zone.js to 0.14.3
2024-01-28 19:44:51 +01:00

96 lines
2.7 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.4.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>gameyfin-frontend</artifactId>
<packaging>jar</packaging>
<properties>
<frontend-maven-plugin.version>1.15.0</frontend-maven-plugin.version>
</properties>
<build>
<resources>
<resource>
<directory>./dist/frontend</directory>
<targetPath>static</targetPath>
</resource>
</resources>
<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>v20.11.0</nodeVersion>
</configuration>
</execution>
<!-- clean install -->
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<!-- Use legacy peer dependency handling because "mat-table-filter" is unmaintained -->
<arguments>install --legacy-peer-deps</arguments>
</configuration>
</execution>
<!-- Update frontend version in package.json -->
<execution>
<id>npm version</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>version ${project.version} --allow-same-version</arguments>
</configuration>
</execution>
<!-- build app -->
<execution>
<id>npm run build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build --omit=dev</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>