Advertisement
Guest User

Untitled

a guest
Mar 25th, 2021
537
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 54.26 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>com.example.testing</groupId>
  7.     <artifactId>testing</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.     <packaging>jar</packaging>
  10.     <name>Testing</name>
  11.  
  12.     <repositories>
  13.         <!-- jhipster-needle-maven-repository -->
  14.     </repositories>
  15.  
  16.     <pluginRepositories>
  17.         <!-- jhipster-needle-maven-plugin-repository -->
  18.     </pluginRepositories>
  19.  
  20.     <!-- jhipster-needle-distribution-management -->
  21.  
  22.     <properties>
  23.         <!-- Build properties -->
  24.         <maven.version>3.3.9</maven.version>
  25.         <java.version>1.8</java.version>
  26.         <node.version>v12.16.1</node.version>
  27.         <npm.version>6.14.5</npm.version>
  28.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  30.         <project.testresult.directory>${project.build.directory}/test-results</project.testresult.directory>
  31.         <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
  32.         <maven.compiler.source>${java.version}</maven.compiler.source>
  33.         <maven.compiler.target>${java.version}</maven.compiler.target>
  34.         <argLine>-Djava.security.egd=file:/dev/./urandom -Xmx256m</argLine>
  35.         <m2e.apt.activation>jdt_apt</m2e.apt.activation>
  36.         <run.addResources>false</run.addResources>
  37.         <!-- These remain empty unless the corresponding profile is active -->
  38.         <profile.no-liquibase />
  39.         <profile.swagger />
  40.         <profile.tls />
  41.  
  42.         <!-- Dependency versions -->
  43.         <jhipster-dependencies.version>3.9.1</jhipster-dependencies.version>
  44.         <!-- The spring-boot version should match the one managed by
  45.        https://mvnrepository.com/artifact/io.github.jhipster/jhipster-dependencies/${jhipster-dependencies.version} -->
  46.         <spring-boot.version>2.2.7.RELEASE</spring-boot.version>
  47.         <!-- The hibernate version should match the one managed by
  48.        https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/${spring-boot.version} -->
  49.         <hibernate.version>5.4.15.Final</hibernate.version>
  50.         <!-- The javassist version should match the one managed by
  51.        https://mvnrepository.com/artifact/org.hibernate/hibernate-core/${hibernate.version} -->
  52.         <javassist.version>3.24.0-GA</javassist.version>
  53.         <!-- The liquibase version should match the one managed by
  54.        https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/${spring-boot.version} -->
  55.         <liquibase.version>3.9.0</liquibase.version>
  56.         <liquibase-hibernate5.version>3.8</liquibase-hibernate5.version>
  57.         <h2.version>1.4.200</h2.version>
  58.         <validation-api.version>2.0.1.Final</validation-api.version>
  59.         <jaxb-runtime.version>2.3.3</jaxb-runtime.version>
  60.         <archunit-junit5.version>0.14.1</archunit-junit5.version>
  61.         <mapstruct.version>1.3.1.Final</mapstruct.version>
  62.         <!-- Plugin versions -->
  63.         <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
  64.         <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
  65.         <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
  66.         <maven-eclipse-plugin.version>2.10</maven-eclipse-plugin.version>
  67.         <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version>
  68.         <maven-failsafe-plugin.version>3.0.0-M4</maven-failsafe-plugin.version>
  69.         <maven-idea-plugin.version>2.2.1</maven-idea-plugin.version>
  70.         <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
  71.         <maven-surefire-plugin.version>3.0.0-M4</maven-surefire-plugin.version>
  72.         <maven-war-plugin.version>3.2.3</maven-war-plugin.version>
  73.         <maven-checkstyle.version>3.1.1</maven-checkstyle.version>
  74.         <checkstyle.version>8.32</checkstyle.version>
  75.         <spring-nohttp-checkstyle.version>0.0.4.RELEASE</spring-nohttp-checkstyle.version>
  76.         <frontend-maven-plugin.version>1.10.0</frontend-maven-plugin.version>
  77.         <git-commit-id-plugin.version>4.0.0</git-commit-id-plugin.version>
  78.         <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
  79.         <jib-maven-plugin.version>2.4.0</jib-maven-plugin.version>
  80.         <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
  81.         <properties-maven-plugin.version>1.0.0</properties-maven-plugin.version>
  82.         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
  83.         <jacoco.utReportFolder>${project.build.directory}/jacoco/test</jacoco.utReportFolder>
  84.         <jacoco.utReportFile>${jacoco.utReportFolder}/test.exec</jacoco.utReportFile>
  85.         <jacoco.itReportFolder>${project.build.directory}/jacoco/integrationTest</jacoco.itReportFolder>
  86.         <jacoco.itReportFile>${jacoco.itReportFolder}/integrationTest.exec</jacoco.itReportFile>
  87.         <junit.utReportFolder>${project.testresult.directory}/test</junit.utReportFolder>
  88.         <junit.itReportFolder>${project.testresult.directory}/integrationTest</junit.itReportFolder>
  89.         <!-- jhipster-needle-maven-property -->
  90.     </properties>
  91.  
  92.     <dependencyManagement>
  93.         <dependencies>
  94.             <dependency>
  95.                 <groupId>io.github.jhipster</groupId>
  96.                 <artifactId>jhipster-dependencies</artifactId>
  97.                 <version>${jhipster-dependencies.version}</version>
  98.                 <type>pom</type>
  99.                 <scope>import</scope>
  100.             </dependency>
  101.             <!-- jhipster-needle-maven-add-dependency-management -->
  102.         </dependencies>
  103.     </dependencyManagement>
  104.  
  105.     <dependencies>
  106.         <dependency>
  107.             <groupId>io.github.jhipster</groupId>
  108.             <artifactId>jhipster-framework</artifactId>
  109.         </dependency>
  110.         <dependency>
  111.             <groupId>javax.annotation</groupId>
  112.             <artifactId>javax.annotation-api</artifactId>
  113.         </dependency>
  114.  
  115.         <dependency>
  116.             <groupId>org.springframework.boot</groupId>
  117.             <artifactId>spring-boot-starter-cache</artifactId>
  118.         </dependency>
  119.         <dependency>
  120.             <groupId>com.fasterxml.jackson.module</groupId>
  121.             <artifactId>jackson-module-jaxb-annotations</artifactId>
  122.         </dependency>
  123.         <dependency>
  124.             <groupId>com.fasterxml.jackson.datatype</groupId>
  125.             <artifactId>jackson-datatype-hibernate5</artifactId>
  126.         </dependency>
  127.         <dependency>
  128.             <groupId>com.fasterxml.jackson.datatype</groupId>
  129.             <artifactId>jackson-datatype-hppc</artifactId>
  130.         </dependency>
  131.         <dependency>
  132.             <groupId>com.fasterxml.jackson.datatype</groupId>
  133.             <artifactId>jackson-datatype-jsr310</artifactId>
  134.         </dependency>
  135.         <dependency>
  136.             <groupId>com.h2database</groupId>
  137.             <artifactId>h2</artifactId>
  138.             <scope>test</scope>
  139.         </dependency>
  140.         <dependency>
  141.             <groupId>io.springfox</groupId>
  142.             <artifactId>springfox-swagger2</artifactId>
  143.         </dependency>
  144.         <dependency>
  145.             <groupId>io.springfox</groupId>
  146.             <artifactId>springfox-bean-validators</artifactId>
  147.         </dependency>
  148.         <dependency>
  149.             <groupId>com.zaxxer</groupId>
  150.             <artifactId>HikariCP</artifactId>
  151.         </dependency>
  152.         <dependency>
  153.             <groupId>org.testcontainers</groupId>
  154.             <artifactId>mysql</artifactId>
  155.             <scope>test</scope>
  156.         </dependency>
  157.         <dependency>
  158.             <groupId>javax.cache</groupId>
  159.             <artifactId>cache-api</artifactId>
  160.         </dependency>
  161.         <dependency>
  162.             <groupId>mysql</groupId>
  163.             <artifactId>mysql-connector-java</artifactId>
  164.         </dependency>
  165.         <dependency>
  166.             <groupId>org.ehcache</groupId>
  167.             <artifactId>ehcache</artifactId>
  168.         </dependency>
  169.         <dependency>
  170.             <groupId>org.hibernate</groupId>
  171.             <artifactId>hibernate-jcache</artifactId>
  172.         </dependency>
  173.         <dependency>
  174.             <groupId>org.hibernate</groupId>
  175.             <artifactId>hibernate-jpamodelgen</artifactId>
  176.             <scope>provided</scope>
  177.         </dependency>
  178.         <dependency>
  179.             <groupId>org.hibernate</groupId>
  180.             <artifactId>hibernate-core</artifactId>
  181.         </dependency>
  182.         <dependency>
  183.             <groupId>org.hibernate.validator</groupId>
  184.             <artifactId>hibernate-validator</artifactId>
  185.         </dependency>
  186.         <dependency>
  187.             <groupId>org.liquibase</groupId>
  188.             <artifactId>liquibase-core</artifactId>
  189.             <!-- Inherited version from Spring Boot can't be used because of regressions -->
  190.             <version>${liquibase.version}</version>
  191.         </dependency>
  192.         <dependency>
  193.             <groupId>net.logstash.logback</groupId>
  194.             <artifactId>logstash-logback-encoder</artifactId>
  195.         </dependency>
  196.         <dependency>
  197.             <groupId>org.mapstruct</groupId>
  198.             <artifactId>mapstruct</artifactId>
  199.         </dependency>
  200.         <dependency>
  201.             <groupId>org.mapstruct</groupId>
  202.             <artifactId>mapstruct-processor</artifactId>
  203.             <scope>provided</scope>
  204.         </dependency>
  205.         <dependency>
  206.             <groupId>org.springframework.boot</groupId>
  207.             <artifactId>spring-boot-configuration-processor</artifactId>
  208.             <scope>provided</scope>
  209.         </dependency>
  210.         <dependency>
  211.             <groupId>org.springframework.boot</groupId>
  212.             <artifactId>spring-boot-loader-tools</artifactId>
  213.         </dependency>
  214.         <dependency>
  215.             <groupId>org.springframework.boot</groupId>
  216.             <artifactId>spring-boot-starter-actuator</artifactId>
  217.         </dependency>
  218.         <dependency>
  219.             <groupId>org.springframework.boot</groupId>
  220.             <artifactId>spring-boot-starter-aop</artifactId>
  221.         </dependency>
  222.         <dependency>
  223.             <groupId>org.springframework.boot</groupId>
  224.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  225.         </dependency>
  226.         <dependency>
  227.             <groupId>org.springframework.boot</groupId>
  228.             <artifactId>spring-boot-starter-logging</artifactId>
  229.         </dependency>
  230.         <dependency>
  231.             <groupId>org.springframework.boot</groupId>
  232.             <artifactId>spring-boot-starter-mail</artifactId>
  233.         </dependency>
  234.         <dependency>
  235.             <groupId>org.springframework.boot</groupId>
  236.             <artifactId>spring-boot-starter-security</artifactId>
  237.         </dependency>
  238.         <dependency>
  239.             <groupId>org.springframework.boot</groupId>
  240.             <artifactId>spring-boot-starter-thymeleaf</artifactId>
  241.         </dependency>
  242.         <dependency>
  243.             <groupId>org.springframework.boot</groupId>
  244.             <artifactId>spring-boot-starter-web</artifactId>
  245.         </dependency>
  246.         <dependency>
  247.             <groupId>org.springframework.boot</groupId>
  248.             <artifactId>spring-boot-starter-test</artifactId>
  249.             <scope>test</scope>
  250.         </dependency>
  251.         <dependency>
  252.             <groupId>org.springframework.boot</groupId>
  253.             <artifactId>spring-boot-test</artifactId>
  254.             <scope>test</scope>
  255.         </dependency>
  256.         <dependency>
  257.             <groupId>org.springframework.security</groupId>
  258.             <artifactId>spring-security-test</artifactId>
  259.             <scope>test</scope>
  260.         </dependency>
  261.         <dependency>
  262.             <groupId>com.tngtech.archunit</groupId>
  263.             <artifactId>archunit-junit5-api</artifactId>
  264.             <version>${archunit-junit5.version}</version>
  265.             <scope>test</scope>
  266.         </dependency>
  267.         <!-- Adding the engine dependency to the surefire-plugin unfortunately does not work in the current version. -->
  268.         <!-- https://www.archunit.org/userguide/html/000_Index.html#_junit_5 -->
  269.         <dependency>
  270.             <groupId>com.tngtech.archunit</groupId>
  271.             <artifactId>archunit-junit5-engine</artifactId>
  272.             <version>${archunit-junit5.version}</version>
  273.             <scope>test</scope>
  274.         </dependency>
  275.         <dependency>
  276.             <groupId>org.zalando</groupId>
  277.             <artifactId>problem-spring-web</artifactId>
  278.         </dependency>
  279.         <dependency>
  280.             <groupId>io.jsonwebtoken</groupId>
  281.             <artifactId>jjwt-api</artifactId>
  282.         </dependency>
  283.         <dependency>
  284.             <groupId>io.jsonwebtoken</groupId>
  285.             <artifactId>jjwt-impl</artifactId>
  286.             <scope>runtime</scope>
  287.         </dependency>
  288.         <dependency>
  289.             <groupId>io.jsonwebtoken</groupId>
  290.             <artifactId>jjwt-jackson</artifactId>
  291.             <scope>runtime</scope>
  292.         </dependency>
  293.         <!-- Spring Cloud -->
  294.         <dependency>
  295.             <groupId>org.springframework.boot</groupId>
  296.             <artifactId>spring-boot-starter-cloud-connectors</artifactId>
  297.         </dependency>
  298.         <dependency>
  299.             <groupId>org.springframework.security</groupId>
  300.             <artifactId>spring-security-data</artifactId>
  301.         </dependency>
  302.         <dependency>
  303.             <groupId>io.micrometer</groupId>
  304.             <artifactId>micrometer-registry-prometheus</artifactId>
  305.         </dependency>
  306.         <dependency>
  307.             <groupId>io.dropwizard.metrics</groupId>
  308.             <artifactId>metrics-core</artifactId>
  309.         </dependency>
  310.         <!-- Cucumber -->
  311.         <dependency>
  312.             <groupId>io.cucumber</groupId>
  313.             <artifactId>cucumber-junit</artifactId>
  314.             <scope>test</scope>
  315.         </dependency>
  316.         <dependency>
  317.             <groupId>io.cucumber</groupId>
  318.             <artifactId>cucumber-spring</artifactId>
  319.             <scope>test</scope>
  320.         </dependency>
  321.         <!-- jhipster-needle-maven-add-dependency -->
  322.     </dependencies>
  323.  
  324.     <build>
  325.         <defaultGoal>spring-boot:run</defaultGoal>
  326.         <testResources>
  327.             <testResource>
  328.                 <directory>src/test/resources/</directory>
  329.             </testResource>
  330.             <testResource>
  331.                 <directory>src/test/features</directory>
  332.             </testResource>
  333.         </testResources>
  334.         <plugins>
  335.             <plugin>
  336.                 <groupId>org.apache.maven.plugins</groupId>
  337.                 <artifactId>maven-compiler-plugin</artifactId>
  338.             </plugin>
  339.             <plugin>
  340.                 <groupId>org.apache.maven.plugins</groupId>
  341.                 <artifactId>maven-checkstyle-plugin</artifactId>
  342.             </plugin>
  343.             <plugin>
  344.                 <groupId>org.apache.maven.plugins</groupId>
  345.                 <artifactId>maven-javadoc-plugin</artifactId>
  346.             </plugin>
  347.             <plugin>
  348.                 <groupId>org.apache.maven.plugins</groupId>
  349.                 <artifactId>maven-eclipse-plugin</artifactId>
  350.             </plugin>
  351.             <plugin>
  352.                 <groupId>org.apache.maven.plugins</groupId>
  353.                 <artifactId>maven-enforcer-plugin</artifactId>
  354.             </plugin>
  355.             <plugin>
  356.                 <groupId>org.apache.maven.plugins</groupId>
  357.                 <artifactId>maven-failsafe-plugin</artifactId>
  358.             </plugin>
  359.             <plugin>
  360.                 <groupId>org.apache.maven.plugins</groupId>
  361.                 <artifactId>maven-idea-plugin</artifactId>
  362.             </plugin>
  363.             <plugin>
  364.                 <groupId>org.apache.maven.plugins</groupId>
  365.                 <artifactId>maven-resources-plugin</artifactId>
  366.             </plugin>
  367.             <plugin>
  368.                 <groupId>org.apache.maven.plugins</groupId>
  369.                 <artifactId>maven-surefire-plugin</artifactId>
  370.             </plugin>
  371.             <plugin>
  372.                 <groupId>org.jacoco</groupId>
  373.                 <artifactId>jacoco-maven-plugin</artifactId>
  374.             </plugin>
  375.             <plugin>
  376.                 <groupId>org.sonarsource.scanner.maven</groupId>
  377.                 <artifactId>sonar-maven-plugin</artifactId>
  378.             </plugin>
  379.             <plugin>
  380.                 <groupId>org.liquibase</groupId>
  381.                 <artifactId>liquibase-maven-plugin</artifactId>
  382.             </plugin>
  383.             <plugin>
  384.                 <groupId>org.springframework.boot</groupId>
  385.                 <artifactId>spring-boot-maven-plugin</artifactId>
  386.             </plugin>
  387.             <plugin>
  388.                 <groupId>com.google.cloud.tools</groupId>
  389.                 <artifactId>jib-maven-plugin</artifactId>
  390.             </plugin>
  391.             <plugin>
  392.                 <groupId>org.codehaus.mojo</groupId>
  393.                 <artifactId>properties-maven-plugin</artifactId>
  394.             </plugin>
  395.             <!-- jhipster-needle-maven-add-plugin -->
  396.         </plugins>
  397.         <pluginManagement>
  398.             <plugins>
  399.                 <plugin>
  400.                     <groupId>org.apache.maven.plugins</groupId>
  401.                     <artifactId>maven-checkstyle-plugin</artifactId>
  402.                     <version>${maven-checkstyle.version}</version>
  403.                     <dependencies>
  404.                         <dependency>
  405.                             <groupId>com.puppycrawl.tools</groupId>
  406.                             <artifactId>checkstyle</artifactId>
  407.                             <version>${checkstyle.version}</version>
  408.                         </dependency>
  409.                         <dependency>
  410.                             <groupId>io.spring.nohttp</groupId>
  411.                             <artifactId>nohttp-checkstyle</artifactId>
  412.                             <version>${spring-nohttp-checkstyle.version}</version>
  413.                         </dependency>
  414.                     </dependencies>
  415.                     <configuration>
  416.                         <configLocation>checkstyle.xml</configLocation>
  417.                         <includes>pom.xml,README.md</includes>
  418.                         <excludes>.git/**/*,target/**/*,node_modules/**/*,node/**/*</excludes>
  419.                         <sourceDirectories>./</sourceDirectories>
  420.                     </configuration>
  421.                     <executions>
  422.                         <execution>
  423.                             <goals>
  424.                                 <goal>check</goal>
  425.                             </goals>
  426.                         </execution>
  427.                     </executions>
  428.                 </plugin>
  429.                 <plugin>
  430.                     <groupId>org.apache.maven.plugins</groupId>
  431.                     <artifactId>maven-compiler-plugin</artifactId>
  432.                     <version>${maven-compiler-plugin.version}</version>
  433.                     <configuration>
  434.                         <source>${java.version}</source>
  435.                         <target>${java.version}</target>
  436.                         <annotationProcessorPaths>
  437.                             <path>
  438.                                 <groupId>org.springframework.boot</groupId>
  439.                                 <artifactId>spring-boot-configuration-processor</artifactId>
  440.                                 <version>${spring-boot.version}</version>
  441.                             </path>
  442.                             <path>
  443.                                 <groupId>org.mapstruct</groupId>
  444.                                 <artifactId>mapstruct-processor</artifactId>
  445.                                 <version>${mapstruct.version}</version>
  446.                             </path>
  447.                             <!-- For JPA static metamodel generation -->
  448.                             <path>
  449.                                 <groupId>org.hibernate</groupId>
  450.                                 <artifactId>hibernate-jpamodelgen</artifactId>
  451.                                 <version>${hibernate.version}</version>
  452.                             </path>
  453.                             <path>
  454.                                 <groupId>org.glassfish.jaxb</groupId>
  455.                                 <artifactId>jaxb-runtime</artifactId>
  456.                                 <version>${jaxb-runtime.version}</version>
  457.                             </path>
  458.                             <!-- jhipster-needle-maven-add-annotation-processor -->
  459.                         </annotationProcessorPaths>
  460.                     </configuration>
  461.                 </plugin>
  462.                 <plugin>
  463.                     <groupId>org.apache.maven.plugins</groupId>
  464.                     <artifactId>maven-javadoc-plugin</artifactId>
  465.                     <version>${maven-javadoc-plugin.version}</version>
  466.                     <configuration>
  467.                         <source>${maven.compiler.source}</source>
  468.                     </configuration>
  469.                 </plugin>
  470.                 <plugin>
  471.                     <groupId>org.apache.maven.plugins</groupId>
  472.                     <artifactId>maven-war-plugin</artifactId>
  473.                     <version>${maven-war-plugin.version}</version>
  474.                     <executions>
  475.                         <execution>
  476.                             <id>default-war</id>
  477.                             <goals>
  478.                                 <goal>war</goal>
  479.                             </goals>
  480.                             <phase>package</phase>
  481.                         </execution>
  482.                     </executions>
  483.                     <configuration>
  484.                         <warSourceIncludes>WEB-INF/**,META-INF/**</warSourceIncludes>
  485.                         <failOnMissingWebXml>false</failOnMissingWebXml>
  486.                         <warSourceDirectory>target/classes/static/</warSourceDirectory>
  487.                         <webResources>
  488.                             <resource>
  489.                                 <directory>src/main/webapp</directory>
  490.                                 <includes>
  491.                                     <include>WEB-INF/**</include>
  492.                                 </includes>
  493.                             </resource>
  494.                         </webResources>
  495.                     </configuration>
  496.                 </plugin>
  497.                 <plugin>
  498.                     <groupId>com.github.eirslett</groupId>
  499.                     <artifactId>frontend-maven-plugin</artifactId>
  500.                     <version>${frontend-maven-plugin.version}</version>
  501.                 </plugin>
  502.                 <plugin>
  503.                     <groupId>org.codehaus.mojo</groupId>
  504.                     <artifactId>properties-maven-plugin</artifactId>
  505.                     <version>${properties-maven-plugin.version}</version>
  506.                     <executions>
  507.                         <execution>
  508.                             <phase>initialize</phase>
  509.                             <goals>
  510.                                 <goal>read-project-properties</goal>
  511.                             </goals>
  512.                             <configuration>
  513.                                 <files>
  514.                                     <file>sonar-project.properties</file>
  515.                                 </files>
  516.                             </configuration>
  517.                         </execution>
  518.                     </executions>
  519.                 </plugin>
  520.  
  521.                 <plugin>
  522.                     <groupId>pl.project13.maven</groupId>
  523.                     <artifactId>git-commit-id-plugin</artifactId>
  524.                     <version>${git-commit-id-plugin.version}</version>
  525.                     <executions>
  526.                         <execution>
  527.                             <goals>
  528.                                 <goal>revision</goal>
  529.                             </goals>
  530.                         </execution>
  531.                     </executions>
  532.                     <configuration>
  533.                         <failOnNoGitDirectory>false</failOnNoGitDirectory>
  534.                         <failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
  535.                         <generateGitPropertiesFile>true</generateGitPropertiesFile>
  536.                         <includeOnlyProperties>
  537.                             <includeOnlyProperty>^git.commit.id.abbrev$</includeOnlyProperty>
  538.                             <includeOnlyProperty>^git.commit.id.describe$</includeOnlyProperty>
  539.                             <includeOnlyProperty>^git.branch$</includeOnlyProperty>
  540.                         </includeOnlyProperties>
  541.                     </configuration>
  542.                 </plugin>
  543.                 <plugin>
  544.                     <groupId>org.jacoco</groupId>
  545.                     <artifactId>jacoco-maven-plugin</artifactId>
  546.                     <version>${jacoco-maven-plugin.version}</version>
  547.                     <executions>
  548.                         <execution>
  549.                             <id>pre-unit-tests</id>
  550.                             <goals>
  551.                                 <goal>prepare-agent</goal>
  552.                             </goals>
  553.                             <configuration>
  554.                                 <!-- Sets the path to the file which contains the execution data. -->
  555.                                 <destFile>${jacoco.utReportFile}</destFile>
  556.                             </configuration>
  557.                         </execution>
  558.                         <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run -->
  559.                         <execution>
  560.                             <id>post-unit-test</id>
  561.                             <phase>test</phase>
  562.                             <goals>
  563.                                 <goal>report</goal>
  564.                             </goals>
  565.                             <configuration>
  566.                                 <dataFile>${jacoco.utReportFile}</dataFile>
  567.                                 <outputDirectory>${jacoco.utReportFolder}</outputDirectory>
  568.                             </configuration>
  569.                         </execution>
  570.                         <execution>
  571.                             <id>pre-integration-tests</id>
  572.                             <goals>
  573.                                 <goal>prepare-agent-integration</goal>
  574.                             </goals>
  575.                             <configuration>
  576.                                 <!-- Sets the path to the file which contains the execution data. -->
  577.                                 <destFile>${jacoco.itReportFile}</destFile>
  578.                             </configuration>
  579.                         </execution>
  580.                         <!-- Ensures that the code coverage report for integration tests is created after integration tests have been run -->
  581.                         <execution>
  582.                             <id>post-integration-tests</id>
  583.                             <phase>post-integration-test</phase>
  584.                             <goals>
  585.                                 <goal>report-integration</goal>
  586.                             </goals>
  587.                             <configuration>
  588.                                 <dataFile>${jacoco.itReportFile}</dataFile>
  589.                                 <outputDirectory>${jacoco.itReportFolder}</outputDirectory>
  590.                             </configuration>
  591.                         </execution>
  592.                     </executions>
  593.                 </plugin>
  594.                 <plugin>
  595.                     <groupId>com.google.cloud.tools</groupId>
  596.                     <artifactId>jib-maven-plugin</artifactId>
  597.                     <version>${jib-maven-plugin.version}</version>
  598.                     <configuration>
  599.                         <from>
  600.                             <image>adoptopenjdk:11-jre-hotspot</image>
  601.                         </from>
  602.                         <to>
  603.                             <image>testing:latest</image>
  604.                         </to>
  605.                         <container>
  606.                             <entrypoint>
  607.                                 <shell>bash</shell>
  608.                                 <option>-c</option>
  609.                                 <arg>/entrypoint.sh</arg>
  610.                             </entrypoint>
  611.                             <ports>
  612.                                 <port>8080</port>
  613.                             </ports>
  614.                             <environment>
  615.                                 <SPRING_OUTPUT_ANSI_ENABLED>ALWAYS</SPRING_OUTPUT_ANSI_ENABLED>
  616.                                 <JHIPSTER_SLEEP>0</JHIPSTER_SLEEP>
  617.                             </environment>
  618.                             <creationTime>USE_CURRENT_TIMESTAMP</creationTime>
  619.                         </container>
  620.                         <extraDirectories>
  621.                             <paths>src/main/jib</paths>
  622.                             <permissions>
  623.                                 <permission>
  624.                                     <file>/entrypoint.sh</file>
  625.                                     <mode>755</mode>
  626.                                 </permission>
  627.                             </permissions>
  628.                         </extraDirectories>
  629.                     </configuration>
  630.                 </plugin>
  631.                 <plugin>
  632.                     <groupId>org.liquibase</groupId>
  633.                     <artifactId>liquibase-maven-plugin</artifactId>
  634.                     <version>${liquibase.version}</version>
  635.                     <configuration>
  636.                         <changeLogFile>${project.basedir}/src/main/resources/config/liquibase/master.xml</changeLogFile>
  637.                         <diffChangeLogFile>${project.basedir}/src/main/resources/config/liquibase/changelog/${maven.build.timestamp}_changelog.xml</diffChangeLogFile>
  638.                         <driver>org.h2.Driver</driver>
  639.                         <url>jdbc:h2:file:${project.build.directory}/h2db/db/testing</url>
  640.                         <defaultSchemaName></defaultSchemaName>
  641.                         <username>testing</username>
  642.                         <password></password>
  643.                         <referenceUrl>hibernate:spring:com.example.testing.domain?dialect=org.hibernate.dialect.H2Dialect&amp;hibernate.physical_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy&amp;hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy</referenceUrl>
  644.                         <verbose>true</verbose>
  645.                         <logging>debug</logging>
  646.                         <contexts>!test</contexts>
  647.                     </configuration>
  648.                     <dependencies>
  649.                         <dependency>
  650.                             <groupId>org.liquibase</groupId>
  651.                             <artifactId>liquibase-core</artifactId>
  652.                             <version>${liquibase.version}</version>
  653.                         </dependency>
  654.                         <dependency>
  655.                             <groupId>org.liquibase.ext</groupId>
  656.                             <artifactId>liquibase-hibernate5</artifactId>
  657.                             <version>${liquibase-hibernate5.version}</version>
  658.                         </dependency>
  659.                         <dependency>
  660.                             <groupId>org.springframework.boot</groupId>
  661.                             <artifactId>spring-boot-starter-data-jpa</artifactId>
  662.                             <version>${spring-boot.version}</version>
  663.                         </dependency>
  664.                         <dependency>
  665.                             <groupId>javax.validation</groupId>
  666.                             <artifactId>validation-api</artifactId>
  667.                             <version>${validation-api.version}</version>
  668.                         </dependency>
  669.                         <dependency>
  670.                             <groupId>org.javassist</groupId>
  671.                             <artifactId>javassist</artifactId>
  672.                             <version>${javassist.version}</version>
  673.                         </dependency>
  674.                         <dependency>
  675.                             <groupId>com.h2database</groupId>
  676.                             <artifactId>h2</artifactId>
  677.                             <version>${h2.version}</version>
  678.                         </dependency>
  679.                     </dependencies>
  680.                 </plugin>
  681.                 <plugin>
  682.                     <artifactId>maven-clean-plugin</artifactId>
  683.                     <version>${maven-clean-plugin.version}</version>
  684.                 </plugin>
  685.                 <plugin>
  686.                     <groupId>org.apache.maven.plugins</groupId>
  687.                     <artifactId>maven-eclipse-plugin</artifactId>
  688.                     <version>${maven-eclipse-plugin.version}</version>
  689.                     <configuration>
  690.                         <downloadSources>true</downloadSources>
  691.                         <downloadJavadocs>true</downloadJavadocs>
  692.                     </configuration>
  693.                 </plugin>
  694.                 <plugin>
  695.                     <groupId>org.apache.maven.plugins</groupId>
  696.                     <artifactId>maven-enforcer-plugin</artifactId>
  697.                     <version>${maven-enforcer-plugin.version}</version>
  698.                     <executions>
  699.                         <execution>
  700.                             <id>enforce-versions</id>
  701.                             <goals>
  702.                                 <goal>enforce</goal>
  703.                             </goals>
  704.                         </execution>
  705.                         <execution>
  706.                             <id>enforce-dependencyConvergence</id>
  707.                             <configuration>
  708.                                 <rules>
  709.                                     <DependencyConvergence />
  710.                                 </rules>
  711.                                 <fail>false</fail>
  712.                             </configuration>
  713.                             <goals>
  714.                                 <goal>enforce</goal>
  715.                             </goals>
  716.                         </execution>
  717.                     </executions>
  718.                     <configuration>
  719.                         <rules>
  720.                             <requireMavenVersion>
  721.                                 <message>You are running an older version of Maven. JHipster requires at least Maven ${maven.version}</message>
  722.                                 <version>[${maven.version},)</version>
  723.                             </requireMavenVersion>
  724.                             <requireJavaVersion>
  725.                                 <message>You are running an incompatible version of Java. JHipster supports JDK 8 to 14.</message>
  726.                                 <version>[1.8,15)</version>
  727.                             </requireJavaVersion>
  728.                         </rules>
  729.                     </configuration>
  730.                 </plugin>
  731.                 <plugin>
  732.                     <groupId>org.apache.maven.plugins</groupId>
  733.                     <artifactId>maven-idea-plugin</artifactId>
  734.                     <version>${maven-idea-plugin.version}</version>
  735.                     <configuration>
  736.                         <exclude>node_modules</exclude>
  737.                     </configuration>
  738.                 </plugin>
  739.                 <plugin>
  740.                     <groupId>org.apache.maven.plugins</groupId>
  741.                     <artifactId>maven-resources-plugin</artifactId>
  742.                     <version>${maven-resources-plugin.version}</version>
  743.                     <executions>
  744.                         <execution>
  745.                             <id>default-resources</id>
  746.                             <phase>validate</phase>
  747.                             <goals>
  748.                                 <goal>copy-resources</goal>
  749.                             </goals>
  750.                             <configuration>
  751.                                 <outputDirectory>${project.build.directory}/classes</outputDirectory>
  752.                                 <useDefaultDelimiters>false</useDefaultDelimiters>
  753.                                 <delimiters>
  754.                                     <delimiter>#</delimiter>
  755.                                 </delimiters>
  756.                                 <resources>
  757.                                     <resource>
  758.                                         <directory>src/main/resources/</directory>
  759.                                         <filtering>true</filtering>
  760.                                         <includes>
  761.                                             <include>config/*.yml</include>
  762.                                         </includes>
  763.                                     </resource>
  764.                                     <resource>
  765.                                         <directory>src/main/resources/</directory>
  766.                                         <filtering>false</filtering>
  767.                                         <excludes>
  768.                                             <exclude>config/*.yml</exclude>
  769.                                         </excludes>
  770.                                     </resource>
  771.                                 </resources>
  772.                             </configuration>
  773.                         </execution>
  774.                     </executions>
  775.                 </plugin>
  776.                 <plugin>
  777.                     <groupId>org.apache.maven.plugins</groupId>
  778.                     <artifactId>maven-surefire-plugin</artifactId>
  779.                     <version>${maven-surefire-plugin.version}</version>
  780.                     <configuration>
  781.                         <!-- Force alphabetical order to have a reproducible build -->
  782.                         <runOrder>alphabetical</runOrder>
  783.                         <reportsDirectory>${junit.utReportFolder}</reportsDirectory>
  784.                         <excludes>
  785.                             <exclude>**/*IT*</exclude>
  786.                             <exclude>**/*IntTest*</exclude>
  787.                         </excludes>
  788.                     </configuration>
  789.                 </plugin>
  790.                 <plugin>
  791.                     <groupId>org.apache.maven.plugins</groupId>
  792.                     <artifactId>maven-failsafe-plugin</artifactId>
  793.                     <version>${maven-failsafe-plugin.version}</version>
  794.                     <configuration>
  795.                         <!-- Due to spring-boot repackage, without adding this property test classes are not found
  796.                             See https://github.com/spring-projects/spring-boot/issues/6254 -->
  797.                         <classesDirectory>${project.build.outputDirectory}</classesDirectory>
  798.                         <!-- Force alphabetical order to have a reproducible build -->
  799.                         <runOrder>alphabetical</runOrder>
  800.                         <reportsDirectory>${junit.itReportFolder}</reportsDirectory>
  801.                         <includes>
  802.                             <include>**/*IT*</include>
  803.                             <include>**/*IntTest*</include>
  804.                         </includes>
  805.                     </configuration>
  806.                     <executions>
  807.                         <execution>
  808.                             <id>integration-test</id>
  809.                             <goals>
  810.                                 <goal>integration-test</goal>
  811.                             </goals>
  812.                         </execution>
  813.                         <execution>
  814.                             <id>verify</id>
  815.                             <goals>
  816.                                 <goal>verify</goal>
  817.                             </goals>
  818.                         </execution>
  819.                     </executions>
  820.                 </plugin>
  821.                 <plugin>
  822.                     <groupId>org.sonarsource.scanner.maven</groupId>
  823.                     <artifactId>sonar-maven-plugin</artifactId>
  824.                     <version>${sonar-maven-plugin.version}</version>
  825.                 </plugin>
  826.                 <plugin>
  827.                     <groupId>org.springframework.boot</groupId>
  828.                     <artifactId>spring-boot-maven-plugin</artifactId>
  829.                     <version>${spring-boot.version}</version>
  830.                     <executions>
  831.                         <execution>
  832.                             <goals>
  833.                                 <goal>repackage</goal>
  834.                             </goals>
  835.                         </execution>
  836.                     </executions>
  837.                     <configuration>
  838.                         <mainClass>${start-class}</mainClass>
  839.                         <fork>true</fork>
  840.                         <!--
  841.                        Enable the line below to have remote debugging of your application on port 5005
  842.                        <jvmArguments>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</jvmArguments>
  843.                        -->
  844.                     </configuration>
  845.  
  846.                 </plugin>
  847.                 <!-- jhipster-needle-maven-add-plugin-management -->
  848.             </plugins>
  849.         </pluginManagement>
  850.     </build>
  851.     <profiles>
  852.         <profile>
  853.             <id>no-liquibase</id>
  854.             <properties>
  855.                 <profile.no-liquibase>,no-liquibase</profile.no-liquibase>
  856.             </properties>
  857.         </profile>
  858.         <profile>
  859.             <id>swagger</id>
  860.             <properties>
  861.                 <profile.swagger>,swagger</profile.swagger>
  862.             </properties>
  863.         </profile>
  864.         <profile>
  865.             <id>tls</id>
  866.             <properties>
  867.                 <profile.tls>,tls</profile.tls>
  868.             </properties>
  869.         </profile>
  870.         <profile>
  871.             <id>webpack</id>
  872.             <activation>
  873.                 <activeByDefault>true</activeByDefault>
  874.             </activation>
  875.             <dependencies>
  876.                 <dependency>
  877.                     <groupId>com.h2database</groupId>
  878.                     <artifactId>h2</artifactId>
  879.                 </dependency>
  880.             </dependencies>
  881.             <build>
  882.                 <plugins>
  883.                     <plugin>
  884.                         <groupId>com.github.eirslett</groupId>
  885.                         <artifactId>frontend-maven-plugin</artifactId>
  886.                         <executions>
  887.                             <execution>
  888.                                 <id>install node and npm</id>
  889.                                 <goals>
  890.                                     <goal>install-node-and-npm</goal>
  891.                                 </goals>
  892.                                 <configuration>
  893.                                     <nodeVersion>${node.version}</nodeVersion>
  894.                                     <npmVersion>${npm.version}</npmVersion>
  895.                                 </configuration>
  896.                             </execution>
  897.                             <execution>
  898.                                 <id>npm install</id>
  899.                                 <goals>
  900.                                     <goal>npm</goal>
  901.                                 </goals>
  902.                             </execution>
  903.                             <execution>
  904.                                 <id>webpack build dev</id>
  905.                                 <goals>
  906.                                     <goal>npm</goal>
  907.                                 </goals>
  908.                                 <phase>generate-resources</phase>
  909.                                 <configuration>
  910.                                     <arguments>run webpack:build</arguments>
  911.                                     <environmentVariables>
  912.                                         <APP_VERSION>${project.version}</APP_VERSION>
  913.                                     </environmentVariables>
  914.                                     <npmInheritsProxyConfigFromMaven>false</npmInheritsProxyConfigFromMaven>
  915.                                 </configuration>
  916.                             </execution>
  917.                         </executions>
  918.                     </plugin>
  919.                 </plugins>
  920.             </build>
  921.             <properties>
  922.                 <!-- default Spring profiles -->
  923.                 <spring.profiles.active>dev${profile.no-liquibase}</spring.profiles.active>
  924.             </properties>
  925.         </profile>
  926.         <profile>
  927.             <id>dev</id>
  928.             <activation>
  929.                 <activeByDefault>true</activeByDefault>
  930.             </activation>
  931.             <dependencies>
  932.                 <dependency>
  933.                     <groupId>org.springframework.boot</groupId>
  934.                     <artifactId>spring-boot-starter-undertow</artifactId>
  935.                 </dependency>
  936.                 <dependency>
  937.                     <groupId>org.springframework.boot</groupId>
  938.                     <artifactId>spring-boot-devtools</artifactId>
  939.                     <optional>true</optional>
  940.                 </dependency>
  941.                 <dependency>
  942.                     <groupId>com.h2database</groupId>
  943.                     <artifactId>h2</artifactId>
  944.                 </dependency>
  945.             </dependencies>
  946.             <properties>
  947.                 <!-- default Spring profiles -->
  948.                 <spring.profiles.active>dev${profile.tls}${profile.no-liquibase}</spring.profiles.active>
  949.             </properties>
  950.         </profile>
  951.         <profile>
  952.             <id>prod</id>
  953.             <dependencies>
  954.                 <dependency>
  955.                     <groupId>org.springframework.boot</groupId>
  956.                     <artifactId>spring-boot-starter-undertow</artifactId>
  957.                 </dependency>
  958.             </dependencies>
  959.             <build>
  960.                 <plugins>
  961.                     <plugin>
  962.                         <artifactId>maven-clean-plugin</artifactId>
  963.                         <configuration>
  964.                             <filesets>
  965.                                 <fileset>
  966.                                     <directory>target/classes/static/</directory>
  967.                                 </fileset>
  968.                             </filesets>
  969.                         </configuration>
  970.                     </plugin>
  971.                     <plugin>
  972.                         <groupId>org.springframework.boot</groupId>
  973.                         <artifactId>spring-boot-maven-plugin</artifactId>
  974.                         <executions>
  975.                             <execution>
  976.                                 <goals>
  977.                                     <goal>build-info</goal>
  978.                                 </goals>
  979.                             </execution>
  980.                         </executions>
  981.                     </plugin>
  982.                     <plugin>
  983.                         <groupId>com.github.eirslett</groupId>
  984.                         <artifactId>frontend-maven-plugin</artifactId>
  985.                         <executions>
  986.                             <execution>
  987.                                 <id>install node and npm</id>
  988.                                 <goals>
  989.                                     <goal>install-node-and-npm</goal>
  990.                                 </goals>
  991.                                 <configuration>
  992.                                     <nodeVersion>${node.version}</nodeVersion>
  993.                                     <npmVersion>${npm.version}</npmVersion>
  994.                                 </configuration>
  995.                             </execution>
  996.                             <execution>
  997.                                 <id>npm install</id>
  998.                                 <goals>
  999.                                     <goal>npm</goal>
  1000.                                 </goals>
  1001.                                 <configuration>
  1002.                                     <arguments>install</arguments>
  1003.                                 </configuration>
  1004.                             </execution>
  1005.                             <execution>
  1006.                                 <id>webpack build test</id>
  1007.                                 <goals>
  1008.                                     <goal>npm</goal>
  1009.                                 </goals>
  1010.                                 <phase>test</phase>
  1011.                                 <configuration>
  1012.                                     <arguments>run webpack:test</arguments>
  1013.                                     <npmInheritsProxyConfigFromMaven>false</npmInheritsProxyConfigFromMaven>
  1014.                                 </configuration>
  1015.                             </execution>
  1016.                             <execution>
  1017.                                 <id>webpack build prod</id>
  1018.                                 <goals>
  1019.                                     <goal>npm</goal>
  1020.                                 </goals>
  1021.                                 <phase>generate-resources</phase>
  1022.                                 <configuration>
  1023.                                     <arguments>run webpack:prod</arguments>
  1024.                                     <environmentVariables>
  1025.                                         <APP_VERSION>${project.version}</APP_VERSION>
  1026.                                     </environmentVariables>
  1027.                                     <npmInheritsProxyConfigFromMaven>false</npmInheritsProxyConfigFromMaven>
  1028.                                 </configuration>
  1029.                             </execution>
  1030.                         </executions>
  1031.                     </plugin>
  1032.                     <plugin>
  1033.                         <groupId>pl.project13.maven</groupId>
  1034.                         <artifactId>git-commit-id-plugin</artifactId>
  1035.                     </plugin>
  1036.                 </plugins>
  1037.             </build>
  1038.             <properties>
  1039.                 <!-- default Spring profiles -->
  1040.                 <spring.profiles.active>prod${profile.swagger}${profile.tls}${profile.no-liquibase}</spring.profiles.active>
  1041.             </properties>
  1042.         </profile>
  1043.         <profile>
  1044.             <id>war</id>
  1045.             <build>
  1046.                 <plugins>
  1047.                     <plugin>
  1048.                         <groupId>org.apache.maven.plugins</groupId>
  1049.                         <artifactId>maven-war-plugin</artifactId>
  1050.                     </plugin>
  1051.                 </plugins>
  1052.             </build>
  1053.         </profile>
  1054.         <profile>
  1055.             <!--
  1056.                Profile for applying IDE-specific configuration.
  1057.                At the moment it configures MapStruct and Hibernate JPA Metamodel Generator, which you need when working
  1058.                with DTOs and entity filtering.
  1059.            -->
  1060.             <id>IDE</id>
  1061.             <dependencies>
  1062.                 <dependency>
  1063.                     <groupId>org.mapstruct</groupId>
  1064.                     <artifactId>mapstruct-processor</artifactId>
  1065.                 </dependency>
  1066.                 <dependency>
  1067.                     <groupId>org.hibernate</groupId>
  1068.                     <artifactId>hibernate-jpamodelgen</artifactId>
  1069.                 </dependency>
  1070.             </dependencies>
  1071.         </profile>
  1072.         <profile>
  1073.             <!-- This is automatically activated when working in Eclipse -->
  1074.             <id>eclipse</id>
  1075.             <activation>
  1076.                 <property>
  1077.                     <name>m2e.version</name>
  1078.                 </property>
  1079.             </activation>
  1080.             <dependencies>
  1081.                 <!-- The following dependency is added due to issue #9175-->
  1082.                 <dependency>
  1083.                     <groupId>org.springframework.boot</groupId>
  1084.                     <artifactId>spring-boot-starter-undertow</artifactId>
  1085.                 </dependency>
  1086.             </dependencies>
  1087.             <build>
  1088.                 <pluginManagement>
  1089.                     <plugins>
  1090.                         <!--
  1091.                            This plugin's configuration is used to store Eclipse m2e settings only.
  1092.                            It has no influence on the Maven build itself.
  1093.                            Remove when the m2e plugin can correctly bind to Maven lifecycle
  1094.                        -->
  1095.                         <plugin>
  1096.                             <groupId>org.eclipse.m2e</groupId>
  1097.                             <artifactId>lifecycle-mapping</artifactId>
  1098.                             <version>${lifecycle-mapping.version}</version>
  1099.                             <configuration>
  1100.                                 <lifecycleMappingMetadata>
  1101.                                     <pluginExecutions>
  1102.                                         <pluginExecution>
  1103.                                             <pluginExecutionFilter>
  1104.                                                 <groupId>org.jacoco</groupId>
  1105.                                                 <artifactId>
  1106.                                                     jacoco-maven-plugin
  1107.                                                 </artifactId>
  1108.                                                 <versionRange>
  1109.                                                     ${jacoco-maven-plugin.version}
  1110.                                                 </versionRange>
  1111.                                                 <goals>
  1112.                                                     <goal>prepare-agent</goal>
  1113.                                                 </goals>
  1114.                                             </pluginExecutionFilter>
  1115.                                             <action>
  1116.                                                 <ignore/>
  1117.                                             </action>
  1118.                                         </pluginExecution>
  1119.                                         <pluginExecution>
  1120.                                             <pluginExecutionFilter>
  1121.                                                 <groupId>com.github.eirslett</groupId>
  1122.                                                 <artifactId>frontend-maven-plugin</artifactId>
  1123.                                                 <versionRange>${frontend-maven-plugin.version}</versionRange>
  1124.                                                 <goals>
  1125.                                                     <goal>install-node-and-npm</goal>
  1126.                                                     <goal>npm</goal>
  1127.                                                 </goals>
  1128.                                             </pluginExecutionFilter>
  1129.                                             <action>
  1130.                                                 <ignore/>
  1131.                                             </action>
  1132.                                         </pluginExecution>
  1133.                                     </pluginExecutions>
  1134.                                 </lifecycleMappingMetadata>
  1135.                             </configuration>
  1136.                         </plugin>
  1137.                     </plugins>
  1138.                 </pluginManagement>
  1139.             </build>
  1140.         </profile>
  1141.         <!-- jhipster-needle-maven-add-profile -->
  1142.     </profiles>
  1143. </project>
  1144.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement