| | |
| | | |
| | | <!-- https://mvnrepository.com/artifact/com.alibaba/druid --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>druid</artifactId> |
| | | <version>1.1.6</version> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>druid</artifactId> |
| | | <version>1.1.6</version> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>fastjson</artifactId> |
| | | <version>1.2.74</version> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator --> |
| | |
| | | <artifactId>aliyun-java-sdk-core</artifactId> |
| | | <version>[4.3.2,5.0.0)</version> |
| | | </dependency> |
| | | <!-- 阿里nlp自然语言处理--> |
| | | <dependency> |
| | | <groupId>com.aliyun</groupId> |
| | | <artifactId>aliyun-java-sdk-alinlp</artifactId> |
| | | <version>1.0.20</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.jayway.jsonpath</groupId> |
| | | <artifactId>json-path</artifactId> |
| | |
| | | <groupId>org.freemarker</groupId> |
| | | <artifactId>freemarker</artifactId> |
| | | <version>2.3.31</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j --> |
| | | <dependency> |
| | | <groupId>com.belerweb</groupId> |
| | | <artifactId>pinyin4j</artifactId> |
| | | <version>2.5.1</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/net.sf.cssbox/pdf2dom --> |
| | | <dependency> |
| | | <groupId>net.sf.cssbox</groupId> |
| | | <artifactId>pdf2dom</artifactId> |
| | | <version>2.0.3</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> |
| | | <dependency> |
| | | <groupId>com.google.zxing</groupId> |
| | | <artifactId>core</artifactId> |
| | | <version>3.4.0</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | |
| | | </dependency> |
| | | </dependencies> |
| | | </plugin> |
| | | |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-resources-plugin</artifactId> |
| | | <configuration> |
| | | <delimiters>@</delimiters> |
| | | <useDefaultDelimiters>false</useDefaultDelimiters> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | |
| | | <resources> |
| | | <resource> |
| | | <directory>src/main/resources</directory> |
| | | <filtering>true</filtering> |
| | | <excludes> |
| | | <exclude>font/</exclude> |
| | | </excludes> |
| | | </resource> |
| | | <resource> |
| | | <directory>src/main/resources</directory> |
| | | <filtering>false</filtering> |
| | | <includes> |
| | | <include>font/</include> |
| | | </includes> |
| | | </resource> |
| | | </resources> |
| | | </build> |
| | |
| | | <profile> |
| | | <id>dev</id> |
| | | <properties> |
| | | <profile.active>dev</profile.active> |
| | | <profileActive>dev</profileActive> |
| | | </properties> |
| | | <activation> |
| | | <activeByDefault>true</activeByDefault> |
| | |
| | | <profile> |
| | | <id>pro</id> |
| | | <properties> |
| | | <profile.active>pro</profile.active> |
| | | <profileActive>pro</profileActive> |
| | | </properties> |
| | | <activation> |
| | | <activeByDefault>false</activeByDefault> |
| | | </activation> |
| | | </profile> |
| | | <profile> |
| | | <id>proapp</id> |
| | | <properties> |
| | | <profileActive>proapp</profileActive> |
| | | </properties> |
| | | </profile> |
| | | <profile> |
| | | <id>test</id> |
| | | <properties> |
| | | <profileActive>test</profileActive> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |