190 lines
7.5 KiB
XML
190 lines
7.5 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>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.1.4.RELEASE</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.example</groupId>
|
||
|
<artifactId>springbootapp</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>springbootapp</name>
|
||
|
<description>Demo project for Spring Boot</description>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<java.version>1.8</java.version>
|
||
|
<frontend-maven-plugin.version>1.6</frontend-maven-plugin.version>
|
||
|
<node.version>v10.13.0</node.version>
|
||
|
<yarn.version>v1.12.1</yarn.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-config</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-oauth2-client</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-oauth2-jose</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.amazonaws</groupId>
|
||
|
<artifactId>aws-java-sdk</artifactId>
|
||
|
<version>1.11.700</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.json</groupId>
|
||
|
<artifactId>json</artifactId>
|
||
|
<version>20190722</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<finalName>springBootApp</finalName>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>dev</id>
|
||
|
<activation>
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
<properties>
|
||
|
<spring.profiles.active>dev</spring.profiles.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>prod</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
<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>app/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>app</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>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<properties>
|
||
|
<spring.profiles.active>prod</spring.profiles.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
</project>
|