| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?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>
- <groupId>com.poyee</groupId>
- <artifactId>poyee-parent</artifactId>
- <packaging>pom</packaging>
- <version>1.0-SNAPSHOT</version>
- <properties>
- <java.version>8</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <swagger.version>2.9.2</swagger.version>
- <redisson.version>3.5.0</redisson.version>
- <!-- <fastjson.version>1.2.74</fastjson.version>-->
- <fastjson.version>2.0.10</fastjson.version>
- <dozer.version>6.5.2</dozer.version>
- <skipTests>true</skipTests>
- <guava.version>27.0.1-jre</guava.version>
- <postgresql.version>42.7.2</postgresql.version>
- <!--<org.mapstruct.version>1.5.1.Final</org.mapstruct.version>-->
- </properties>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.17.RELEASE</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <modules>
- <module>poyee-entity</module>
- <module>poyee-repository</module>
- <module>poyee-common</module>
- <module>poyee-service-common</module>
- <module>poyee-base-api</module>
- <module>poyee-service-mall</module>
- <module>poyee-service-order</module>
- <module>poyee-app-mall</module>
- </modules>
- <build>
- <plugins>
- <plugin>
- <groupId>org.bsc.maven</groupId>
- <artifactId>maven-processor-plugin</artifactId>
- <version>3.1.0</version>
- <configuration>
- <defaultOutputDirectory>
- ${project.build.directory}/generated-sources/java
- </defaultOutputDirectory>
- <processors>
- <processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
- <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
- <!--<processor>org.mapstruct.ap.MappingProcessor</processor>-->
- </processors>
- </configuration>
- <executions>
- <execution>
- <id>process</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>process</goal>
- </goals>
- <configuration>
- <outputDirectory>
- ${project.build.directory}/generated-sources/java
- </outputDirectory>
- </configuration>
- </execution>
- <execution>
- <id>process-test</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>process-test</goal>
- </goals>
- <configuration>
- <outputDirectory>
- ${project.build.directory}/generated-test-sources/java
- </outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|