Skip to content

Commit

Permalink
Use maven properties for frontend-maven-plugin version and node.js ve…
Browse files Browse the repository at this point in the history
…rsion used for the frontend build
  • Loading branch information
steinarb committed Jan 2, 2024
1 parent aa7697b commit c182923
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
<karaf.version>4.4.4</karaf.version>
<karaf-feature-name>${project.artifactId}</karaf-feature-name>
<Bundle-SymbolicName>no.priv.bang.demos.${project.artifactId}</Bundle-SymbolicName>
<frontend.maven.plugin.version>1.12.1</frontend.maven.plugin.version>
<nodejs.version>v16.14.0</nodejs.version>
<jersey-feature.version>1.9.7</jersey-feature.version>
<bang-servlet.version>1.6.9</bang-servlet.version>
<osgi-service-adapters.version>1.2.0</osgi-service-adapters.version>
Expand Down Expand Up @@ -157,9 +159,9 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.12.1</version>
<version>${frontend.maven.plugin.version}</version>
<configuration>
<nodeVersion>v16.14.0</nodeVersion>
<nodeVersion>${nodejs.version}</nodeVersion>
<workingDirectory>src/main/frontend</workingDirectory>
<installDirectory>target</installDirectory>
</configuration>
Expand Down

0 comments on commit c182923

Please sign in to comment.