successfully configured nflow

This commit is contained in:
2025-09-10 21:07:53 +02:00
parent 285b03a724
commit eb27468ddb
7 changed files with 64 additions and 7 deletions

38
pom.xml
View File

@@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.5.0</version>
<version>3.3.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>zw.qantra</groupId>
@@ -103,6 +103,11 @@
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.kaczmarzyk</groupId>
<artifactId>specification-arg-resolver</artifactId>
@@ -133,6 +138,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>io.nflow</groupId>
<artifactId>nflow-rest-api-spring-web</artifactId>
<version>10.0.1</version>
</dependency>
</dependencies>
@@ -143,6 +153,32 @@
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.nflow</groupId>
<artifactId>nflow-explorer</artifactId>
<version>10.0.1</version>
<type>tar.gz</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.outputDirectory}/static/explorer</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>