| | |
| | | <artifactId>springfox-swagger-ui</artifactId> |
| | | <version>${swagger.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.github.ulisesbocchio</groupId> |
| | | <artifactId>jasypt-spring-boot-starter</artifactId> |
| | | <version>2.0.0</version> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- 获取系统信息 --> |
| | | <dependency> |
| | | <groupId>com.github.oshi</groupId> |
| | |
| | | <groupId>com.ots</groupId> |
| | | <artifactId>tai-ots-framework</artifactId> |
| | | <version>1.0</version> |
| | | <scope>system</scope> |
| | | <systemPath>${project.basedir}/jar/tai-ots-framework-1.0.jar</systemPath> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | |
| | | <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-assembly-plugin</artifactId> |
| | | <configuration> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <descriptors> |
| | | <descriptor>src/main/assembly/assembly.xml</descriptor> |
| | | </descriptors> |
| | | </configuration> |
| | | <executions> |
| | | <execution> |
| | | <id>make-assembly</id> |
| | | <phase>package</phase> |
| | | <goals> |
| | | <goal>single</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |