| | |
| | | <artifactId>smart-starter-social</artifactId> |
| | | <version>1.0.0</version> |
| | | </dependency> |
| | | <!-- |
| | | |
| | | |
| | | --> |
| | | |
| | | <!-- |
| | | |
| | | |
| | | |
| | | --> |
| | | <dependency> |
| | | <groupId>com.github.xiaoymin</groupId> |
| | | <artifactId>knife4j-spring-ui</artifactId> |
| | |
| | | <!--<version>1.1.0-SNAPSHOT</version>--> |
| | | <version>1.0.4</version> |
| | | </dependency> |
| | | <!--千文密钥认证--> |
| | | <dependency> |
| | | <groupId>com.qianwen</groupId> |
| | | <artifactId>license-common</artifactId> |
| | | <version>1.0.0</version> |
| | | </dependency> |
| | | |
| | | <!-- 图片压缩 --> |
| | | <dependency> |
| | | <groupId>net.coobird</groupId> |
| | |
| | | <groupId>commons-fileupload</groupId> |
| | | <artifactId>commons-fileupload</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-test</artifactId> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | |
| | | |
| | | <dependency> |
| | | <groupId>org.jfree</groupId> |
| | | <artifactId>jfreechart</artifactId> |
| | | <version>1.5.5</version> |
| | | </dependency> |
| | | |
| | | <!--lincense验证--> |
| | | <dependency> |
| | | <groupId>de.schlichtherle.truelicense</groupId> |
| | | <artifactId>truelicense-core</artifactId> |
| | | <version>1.33</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | |
| | | <build> |
| | |
| | | </compilerArgs> |
| | | </configuration> |
| | | </plugin> |
| | | |
| | | <!--使用: mvn -pl smart-man-boot clean dependency:copy-dependencies--> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-dependency-plugin</artifactId> |
| | | <executions> |
| | | <execution> |
| | | <id>copy-dependencies</id> |
| | | <phase>package</phase> |
| | | <goals> |
| | | <goal>copy-dependencies</goal> |
| | | </goals> |
| | | <configuration> |
| | | <!-- 拷贝项目依赖包到lib/目录下 --> |
| | | <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| | | <overWriteReleases>false</overWriteReleases> |
| | | <overWriteSnapshots>false</overWriteSnapshots> |
| | | <overWriteIfNewer>true</overWriteIfNewer> |
| | | </configuration> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-resources-plugin</artifactId> |