Skip to content

Commit c49c6cf

Browse files
committed
add malewicz source
1 parent f5f2660 commit c49c6cf

4 files changed

Lines changed: 53 additions & 2 deletions

File tree

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,8 @@ target/
1616
src/main/assembly/static/lib/*.jar
1717

1818
src/main/generated-sources
19-
conf/sql-boot*
19+
conf/sql-boot*
20+
21+
malewicz/node_modules/
22+
malewicz/node/
23+
malewicz/dist/

pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,52 @@
431431
</executions>
432432
</plugin>
433433

434+
435+
<plugin>
436+
<groupId>com.github.eirslett</groupId>
437+
<artifactId>frontend-maven-plugin</artifactId>
438+
<version>1.6</version>
439+
<configuration>
440+
<workingDirectory>src/main/malewicz</workingDirectory>
441+
</configuration>
442+
<executions>
443+
<!-- Install our node and npm version to run npm/node scripts-->
444+
<execution>
445+
<id>install node and npm</id>
446+
<goals>
447+
<goal>install-node-and-npm</goal>
448+
</goals>
449+
<configuration>
450+
<nodeVersion>v11.14.0</nodeVersion>
451+
</configuration>
452+
</execution>
453+
<!-- Install all project dependencies -->
454+
<execution>
455+
<id>npm install</id>
456+
<goals>
457+
<goal>npm</goal>
458+
</goals>
459+
<!-- optional: default phase is "generate-resources" -->
460+
<phase>generate-resources</phase>
461+
<!-- Optional configuration which provides for running any npm command -->
462+
<configuration>
463+
<arguments>install</arguments>
464+
</configuration>
465+
</execution>
466+
<!-- Build and minify static files -->
467+
<execution>
468+
<id>npm run build</id>
469+
<goals>
470+
<goal>npm</goal>
471+
</goals>
472+
<configuration>
473+
<arguments>run build</arguments>
474+
</configuration>
475+
</execution>
476+
</executions>
477+
</plugin>
478+
479+
434480
</plugins>
435481
</build>
436482

src/main/malewicz

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit f6ed914d40e57929d0e627efcf9ba5b0a12cdaea
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
-->
2424
<h1>Bienvenido a <a href="https://github.com/sql-boot/sql-boot">sql-boot</a> !</h1>
2525

26-
<p>First of all - check your <a href="connections">connections</a></p>
26+
<p>First of all - check your <a href="endpoints">endpoints</a></p>

0 commit comments

Comments
 (0)