Skip to content

Commit

Permalink
fix: Do not use npm install from maven but as prerequisite
Browse files Browse the repository at this point in the history
  • Loading branch information
baumeister25 committed Aug 23, 2023
1 parent 9d0ef84 commit cc6faea
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions asciidoctor-stylesheet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
<packaging>pom</packaging>

<properties>
<node.version>v10.16.2</node.version>
<npm.version>6.9.0</npm.version>
<frontend-maven-plugin.version>1.6</frontend-maven-plugin.version>
<stylesheet.build.dir>${basedir}/stylesheets/</stylesheet.build.dir>
<stylesheet.target.dir>${project.build.directory}/stylesheets/</stylesheet.target.dir>
Expand Down Expand Up @@ -44,36 +42,6 @@

<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-maven-plugin.version}</version>
<configuration>
<workingDirectory>./</workingDirectory>
</configuration>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>${node.version}</nodeVersion>
<npmVersion>${npm.version}</npmVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-maven-plugin</artifactId>
Expand Down

0 comments on commit cc6faea

Please sign in to comment.