123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?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">
- <parent>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>service-sysmgr</artifactId>
- <version>${micro.version}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-sysmgr-biz</artifactId>
- <packaging>jar</packaging>
- <properties>
- <start-class>com.crunii.micro.service.sysmgr.Application</start-class>
- </properties>
- <dependencies>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-dfa</artifactId>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>service-sysmgr-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-common-swagger</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.pdfbox</groupId>
- <artifactId>fontbox</artifactId>
- <version>2.0.9</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
- <dependency>
- <groupId>org.apache.pdfbox</groupId>
- <artifactId>pdfbox</artifactId>
- <version>2.0.9</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- <version>3.3.0</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>3.4.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- </dependency>
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>2.5.1</version>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>service-qzh-api</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- <plugin>-->
- <!-- <groupId>org.openapitools</groupId>-->
- <!-- <artifactId>openapi-generator-maven-plugin</artifactId>-->
- <!-- <version>6.6.0</version>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <goals>-->
- <!-- <goal>generate</goal>-->
- <!-- </goals>-->
- <!-- <configuration>-->
- <!-- <templateDirectory>${session.executionRootDirectory}/openapi/template</templateDirectory>-->
- <!-- <inputSpec>openapi/sysmgr.yaml</inputSpec>-->
- <!-- <generatorName>spring</generatorName>-->
- <!-- <apiPackage>com.crunii.micro.service.sysmgr.controller</apiPackage>-->
- <!-- <modelPackage>com.crunii.micro.service.sysmgr.dto</modelPackage>-->
- <!-- <generateModelDocumentation>true</generateModelDocumentation>-->
- <!-- <skipValidateSpec>false</skipValidateSpec>-->
- <!-- <configOptions>-->
- <!-- <delegatePattern>true</delegatePattern>-->
- <!-- <title>swagger</title>-->
- <!-- <serializableModel>true</serializableModel>-->
- <!-- </configOptions>-->
- <!-- <!– https://github.com/OpenAPITools/openapi-generator/issues/4680#issuecomment-656199687–>-->
- <!-- <importMappings>-->
- <!-- <importMapping>Request=javax.servlet.http.HttpServletRequest</importMapping>-->
- <!-- </importMappings>-->
- <!-- </configuration>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.11.0</version>
- <configuration>
- <target>${maven.compiler.target}</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- <annotationProcessorPaths>
- <path>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${org.projectlombok.version}</version>
- </path>
- <path>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-processor</artifactId>
- <version>${mapstruct.version}</version>
- </path>
- </annotationProcessorPaths>
- <compilerArgs>
- <compilerArg>-Amapstruct.suppressGeneratorTimestamp=true</compilerArg>
- <compilerArg>-Amapstruct.verbose=true</compilerArg>
- <!--由spring管理转换器类 -->
- <compilerArg>-Amapstruct.defaultComponentModel=spring</compilerArg>
- </compilerArgs>
- </configuration>
- </plugin>
- <!-- 指定多个源代码目录、多个资源文件目录 -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>3.3.0</version>
- <executions>
- <execution>
- <id>add-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>src/java/main</source>
- <source>
- ${project.build.directory}/generated-sources/openapi/src/java/main
- </source>
- </sources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|