* JAVA-5408: Use common postgresql.version property * JAVA-5408: Cleanup spring-boot-react * JAVA-5408: Use commons-cli.version property in libraries-data * JAVA-5408: spring-security-modules cleanup Co-authored-by: Krzysztof Woyke <krzysztof.woyke.sp@lhsystems.com>
		
			
				
	
	
		
			135 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<project xmlns="http://maven.apache.org/POM/4.0.0"
 | 
						|
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | 
						|
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
    <artifactId>spring-boot-react</artifactId>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <artifactId>spring-boot-modules</artifactId>
 | 
						|
        <groupId>com.baeldung.spring-boot-modules</groupId>
 | 
						|
        <version>1.0.0-SNAPSHOT</version>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
            <version>${spring-boot.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-jpa</artifactId>
 | 
						|
            <version>${spring-boot.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.h2database</groupId>
 | 
						|
            <artifactId>h2</artifactId>
 | 
						|
            <version>${h2.version}</version>
 | 
						|
            <scope>runtime</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.javafaker</groupId>
 | 
						|
            <artifactId>javafaker</artifactId>
 | 
						|
            <version>${javafaker.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-test</artifactId>
 | 
						|
            <version>${spring-boot.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <artifactId>maven-resources-plugin</artifactId>
 | 
						|
                <version>3.1.0</version>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <id>copy-resources</id>
 | 
						|
                        <phase>process-classes</phase>
 | 
						|
                        <goals>
 | 
						|
                            <goal>copy-resources</goal>
 | 
						|
                        </goals>
 | 
						|
                        <configuration>
 | 
						|
                            <outputDirectory>${basedir}/target/classes/static</outputDirectory>
 | 
						|
                            <resources>
 | 
						|
                                <resource>
 | 
						|
                                    <directory>frontend/build</directory>
 | 
						|
                                </resource>
 | 
						|
                            </resources>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>com.github.eirslett</groupId>
 | 
						|
                <artifactId>frontend-maven-plugin</artifactId>
 | 
						|
                <version>${frontend-maven-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <workingDirectory>frontend</workingDirectory>
 | 
						|
                </configuration>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <id>install node</id>
 | 
						|
                        <goals>
 | 
						|
                            <goal>install-node-and-yarn</goal>
 | 
						|
                        </goals>
 | 
						|
                        <configuration>
 | 
						|
                            <nodeVersion>${node.version}</nodeVersion>
 | 
						|
                            <yarnVersion>${yarn.version}</yarnVersion>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                    <execution>
 | 
						|
                        <id>yarn install</id>
 | 
						|
                        <goals>
 | 
						|
                            <goal>yarn</goal>
 | 
						|
                        </goals>
 | 
						|
                        <phase>generate-resources</phase>
 | 
						|
                    </execution>
 | 
						|
                    <execution>
 | 
						|
                        <id>yarn test</id>
 | 
						|
                        <goals>
 | 
						|
                            <goal>yarn</goal>
 | 
						|
                        </goals>
 | 
						|
                        <phase>test</phase>
 | 
						|
                        <configuration>
 | 
						|
                            <arguments>test</arguments>
 | 
						|
                            <environmentVariables>
 | 
						|
                                <CI>true</CI>
 | 
						|
                            </environmentVariables>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                    <execution>
 | 
						|
                        <id>yarn build</id>
 | 
						|
                        <goals>
 | 
						|
                            <goal>yarn</goal>
 | 
						|
                        </goals>
 | 
						|
                        <phase>compile</phase>
 | 
						|
                        <configuration>
 | 
						|
                            <arguments>build</arguments>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <maven.compiler.source>11</maven.compiler.source>
 | 
						|
        <maven.compiler.target>11</maven.compiler.target>
 | 
						|
        <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version>
 | 
						|
        <node.version>v10.14.2</node.version>
 | 
						|
        <yarn.version>v1.12.1</yarn.version>
 | 
						|
        <spring-boot.version>2.4.4</spring-boot.version>
 | 
						|
        <h2.version>1.4.200</h2.version>
 | 
						|
        <javafaker.version>1.0.2</javafaker.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |