|
1766 | 1766 | <skip>false</skip>
|
1767 | 1767 | </configuration>
|
1768 | 1768 | </plugin>
|
1769 |
| - <!-- Download node.js and related modules to install 3rd party frontend libraries --> |
1770 |
| - <plugin> |
1771 |
| - <groupId>com.github.eirslett</groupId> |
1772 |
| - <artifactId>frontend-maven-plugin</artifactId> |
1773 |
| - <version>1.11.0</version> |
1774 |
| - |
1775 |
| - <configuration> |
1776 |
| - <workingDirectory>./</workingDirectory> |
1777 |
| - </configuration> |
1778 |
| - |
1779 |
| - <executions> |
1780 |
| - <execution> |
1781 |
| - <id>install node and npm</id> |
1782 |
| - <goals> |
1783 |
| - <goal>install-node-and-npm</goal> |
1784 |
| - </goals> |
1785 |
| - <phase>generate-resources</phase> |
1786 |
| - <configuration> |
1787 |
| - <nodeVersion>v18.18.2</nodeVersion> |
1788 |
| - <npmVersion>9.8.1</npmVersion> |
1789 |
| - </configuration> |
1790 |
| - </execution> |
1791 |
| - |
1792 |
| - <!-- |
1793 |
| - <execution> |
1794 |
| - <id>config ssl</id> |
1795 |
| - <goals> |
1796 |
| - <goal>npm</goal> |
1797 |
| - </goals> |
1798 |
| - <phase>generate-resources</phase> |
1799 |
| - <configuration> |
1800 |
| - <skip>${env.SKIP_NPM_CONFIG}</skip> |
1801 |
| - <arguments>config set strict-ssl false</arguments> |
1802 |
| - </configuration> |
1803 |
| - </execution> |
1804 |
| -
|
1805 |
| - <execution> |
1806 |
| - <id>config registry</id> |
1807 |
| - <goals> |
1808 |
| - <goal>npm</goal> |
1809 |
| - </goals> |
1810 |
| - <phase>generate-resources</phase> |
1811 |
| - <configuration> |
1812 |
| - <skip>${env.SKIP_NPM_CONFIG}</skip> |
1813 |
| - <arguments>config set registry ${env.NPMREGISTRY}</arguments> |
1814 |
| - </configuration> |
1815 |
| - </execution> |
1816 |
| - --> |
1817 |
| - |
1818 |
| - <execution> |
1819 |
| - <id>npm install</id> |
1820 |
| - <goals> |
1821 |
| - <goal>npm</goal> |
1822 |
| - </goals> |
1823 |
| - <phase>generate-resources</phase> |
1824 |
| - <configuration> |
1825 |
| - <arguments>ci</arguments> |
1826 |
| - </configuration> |
1827 |
| - </execution> |
1828 |
| - |
1829 |
| - <execution> |
1830 |
| - <id>npm build</id> |
1831 |
| - <goals> |
1832 |
| - <goal>npm</goal> |
1833 |
| - </goals> |
1834 |
| - <phase>generate-resources</phase> |
1835 |
| - <configuration> |
1836 |
| - <arguments>run-script build</arguments> |
1837 |
| - </configuration> |
1838 |
| - </execution> |
1839 |
| - |
1840 |
| - <!-- |
1841 |
| - <execution> |
1842 |
| - <id>delete ssl</id> |
1843 |
| - <goals> |
1844 |
| - <goal>npm</goal> |
1845 |
| - </goals> |
1846 |
| - <phase>generate-resources</phase> |
1847 |
| - <configuration> |
1848 |
| - <skip>${env.SKIP_NPM_CONFIG}</skip> |
1849 |
| - <arguments>config delete strict-ssl</arguments> |
1850 |
| - </configuration> |
1851 |
| - </execution> |
1852 |
| -
|
1853 |
| - <execution> |
1854 |
| - <id>delete registry</id> |
1855 |
| - <goals> |
1856 |
| - <goal>npm</goal> |
1857 |
| - </goals> |
1858 |
| - <phase>generate-resources</phase> |
1859 |
| - <configuration> |
1860 |
| - <skip>${env.SKIP_NPM_CONFIG}</skip> |
1861 |
| - <arguments>config delete registry</arguments> |
1862 |
| - </configuration> |
1863 |
| - </execution> |
1864 |
| - --> |
1865 |
| - </executions> |
1866 |
| - </plugin> |
1867 | 1769 |
|
1868 | 1770 | </plugins>
|
1869 | 1771 | </pluginManagement>
|
|
0 commit comments