This commit is contained in:
death-claw
2024-01-13 22:26:51 +01:00
parent 2130b30329
commit 7d41e7d2ec
6 changed files with 27 additions and 15739 deletions
+2 -1
View File
@@ -6,7 +6,7 @@
<groupId>me.vripper</groupId>
<artifactId>vripper-project</artifactId>
<packaging>pom</packaging>
<version>5.1.0</version>
<version>${revision}</version>
<properties>
<java.version>21</java.version>
<kotlin.version>1.9.20</kotlin.version>
@@ -16,6 +16,7 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>5.2.0-SNAPSHOT</revision>
</properties>
<modules>
<module>vripper-core</module>
+1 -1
View File
@@ -7,7 +7,7 @@
<parent>
<groupId>me.vripper</groupId>
<artifactId>vripper-project</artifactId>
<version>5.1.0</version>
<version>${revision}</version>
</parent>
<artifactId>vripper-core</artifactId>
+2 -2
View File
@@ -7,7 +7,7 @@
<parent>
<artifactId>vripper-project</artifactId>
<groupId>me.vripper</groupId>
<version>5.1.0</version>
<version>${revision}</version>
</parent>
@@ -100,7 +100,7 @@
<dependency>
<artifactId>vripper-core</artifactId>
<groupId>me.vripper</groupId>
<version>5.1.0</version>
<version>${revision}</version>
</dependency>
</dependencies>
-15723
View File
File diff suppressed because it is too large Load Diff
+19 -9
View File
@@ -3,9 +3,15 @@
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.vripper</groupId>
<artifactId>vripper-project</artifactId>
<version>${revision}</version>
</parent>
<groupId>me.vripper</groupId>
<artifactId>vripper-web-ui</artifactId>
<version>5.1.0</version>
<version>${revision}</version>
<name>vripper-web-ui</name>
<build>
@@ -19,27 +25,31 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.12.1</version>
<version>1.15.0</version>
<configuration>
<nodeVersion>v18.16.0</nodeVersion>
<nodeVersion>v20.10.0</nodeVersion>
<yarnVersion>v1.22.21</yarnVersion>
</configuration>
<executions>
<execution>
<id>install node</id>
<id>install node and yarn</id>
<goals>
<goal>install-node-and-npm</goal>
<goal>install-node-and-yarn</goal>
</goals>
</execution>
<execution>
<id>npm install</id>
<id>yarn install</id>
<goals>
<goal>npm</goal>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>npm run build</id>
<id>yarn run build</id>
<goals>
<goal>npm</goal>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>run build</arguments>
+3 -3
View File
@@ -10,7 +10,7 @@
<parent>
<groupId>me.vripper</groupId>
<artifactId>vripper-project</artifactId>
<version>5.1.0</version>
<version>${revision}</version>
</parent>
<properties>
@@ -37,12 +37,12 @@
<dependency>
<groupId>me.vripper</groupId>
<artifactId>vripper-core</artifactId>
<version>5.1.0</version>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>me.vripper</groupId>
<artifactId>vripper-web-ui</artifactId>
<version>5.1.0</version>
<version>${revision}</version>
</dependency>
</dependencies>