Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend-maven-plugin/src/it/custom-install-directory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v8.11.1</nodeVersion>
<npmVersion>5.6.0</npmVersion>
<nodeVersion>v10.16.2</nodeVersion>
<npmVersion>6.9.0</npmVersion>
</configuration>
</execution>

Expand Down
4 changes: 2 additions & 2 deletions frontend-maven-plugin/src/it/custom-working-directory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v8.11.1</nodeVersion>
<npmVersion>5.6.0</npmVersion>
<nodeVersion>v10.16.2</nodeVersion>
<npmVersion>6.9.0</npmVersion>
</configuration>
</execution>

Expand Down
4 changes: 2 additions & 2 deletions frontend-maven-plugin/src/it/example project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
</goals>
<configuration>
<!-- See https://nodejs.org/en/download/ for latest node and npm (lts) versions -->
<nodeVersion>v8.11.1</nodeVersion>
<npmVersion>5.6.0</npmVersion>
<nodeVersion>v10.16.2</nodeVersion>
<npmVersion>6.9.0</npmVersion>
</configuration>
</execution>

Expand Down
2 changes: 1 addition & 1 deletion frontend-maven-plugin/src/it/node-provided-npm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v8.11.1</nodeVersion>
<nodeVersion>v10.16.2</nodeVersion>
</configuration>
</execution>

Expand Down
4 changes: 2 additions & 2 deletions frontend-maven-plugin/src/it/yarn-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<goal>install-node-and-yarn</goal>
</goals>
<configuration>
<nodeVersion>v8.11.1</nodeVersion>
<yarnVersion>v1.6.0</yarnVersion>
<nodeVersion>v10.16.2</nodeVersion>
<yarnVersion>v1.17.3</yarnVersion>
</configuration>
</execution>

Expand Down
7 changes: 4 additions & 3 deletions frontend-plugin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
<version>2.6</version>
</dependency>

<dependency>
Expand All @@ -44,7 +44,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
<version>4.5.9</version>
</dependency>

<dependency>
Expand All @@ -56,7 +56,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
<version>1.7.26</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -88,6 +88,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
</plugins>
</build>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
Expand Down Expand Up @@ -107,7 +108,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -129,7 +130,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down