Skip to content

Commit 8371a90

Browse files
committed
Use frontend-maven-plugin configuration of parent POM.
1 parent 79c142d commit 8371a90

File tree

4 files changed

+9
-29
lines changed

4 files changed

+9
-29
lines changed

.mvn_exec_node

Whitespace-only changes.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222
"remark-preset-lint-recommended": "6.1.3"
2323
},
2424
"scripts": {
25-
"lint-md": "remark ."
25+
"lint-md": "remark .",
26+
"mvnbuild": "",
27+
"mvntest": ""
2628
},
2729
"remarkConfig": {
2830
"plugins": [

pom.xml

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jvnet.hudson.plugins</groupId>
66
<artifactId>analysis-pom</artifactId>
7-
<version>6.10.0</version>
7+
<version>6.12.0</version>
88
<relativePath />
99
</parent>
1010

@@ -115,33 +115,6 @@
115115
</filesets>
116116
</configuration>
117117
</plugin>
118-
<plugin>
119-
<groupId>com.github.eirslett</groupId>
120-
<artifactId>frontend-maven-plugin</artifactId>
121-
<version>1.13.4</version>
122-
<executions>
123-
<execution>
124-
<id>install node and npm</id>
125-
<goals>
126-
<goal>install-node-and-npm</goal>
127-
</goals>
128-
<phase>generate-resources</phase>
129-
<configuration>
130-
<nodeVersion>v18.12.0</nodeVersion>
131-
</configuration>
132-
</execution>
133-
<execution>
134-
<id>npm install</id>
135-
<goals>
136-
<goal>npm</goal>
137-
</goals>
138-
<phase>generate-resources</phase>
139-
<configuration>
140-
<arguments>install</arguments>
141-
</configuration>
142-
</execution>
143-
</executions>
144-
</plugin>
145118
<plugin>
146119
<groupId>org.apache.maven.plugins</groupId>
147120
<artifactId>maven-resources-plugin</artifactId>

release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
git pull
4+
git push
5+
mvn -B clean release:prepare release:perform

0 commit comments

Comments
 (0)