| | |
| | | <artifactId>hibernate-validator</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.iailab</groupId> |
| | | <artifactId>iailab-common-test</artifactId> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-test</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>junit</groupId> |
| | | <artifactId>junit</artifactId> |
| | | <version>4.13.2</version> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-jar-plugin</artifactId> |
| | | <version>3.3.0</version> |
| | | <configuration> |
| | | <archive> |
| | | <manifest> |
| | | <addClasspath>true</addClasspath> |
| | | </manifest> |
| | | </archive> |
| | | </configuration> |
| | | <artifactId>maven-assembly-plugin</artifactId> |
| | | <version>3.6.0</version> |
| | | <executions> |
| | | <execution> |
| | | <phase>package</phase> |
| | | <goals> |
| | | <goal>single</goal> |
| | | </goals> |
| | | <configuration> |
| | | <descriptorRefs> |
| | | <!-- 使用预定义的打包方式:将所有内容合并到 JAR 中 --> |
| | | <descriptorRef>jar-with-dependencies</descriptorRef> |
| | | </descriptorRefs> |
| | | <!-- 指定主类 --> |
| | | <archive> |
| | | <manifest> |
| | | <mainClass>com.iailab.sdk.IailabPlatSdkMain</mainClass> |
| | | </manifest> |
| | | </archive> |
| | | </configuration> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | <!-- <build>--> |
| | | <!-- <plugins>--> |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.apache.maven.plugins</groupId>--> |
| | | <!-- <artifactId>maven-jar-plugin</artifactId>--> |
| | | <!-- <version>3.3.0</version>--> |
| | | <!-- <configuration>--> |
| | | <!-- <archive>--> |
| | | <!-- <manifest>--> |
| | | <!-- <addClasspath>true</addClasspath>--> |
| | | <!-- <classpathPrefix>lib/</classpathPrefix>--> |
| | | <!-- <mainClass>com.iailab.sdk.IailabPlatSdkMain</mainClass>--> |
| | | <!-- </manifest>--> |
| | | <!-- </archive>--> |
| | | <!-- </configuration>--> |
| | | <!-- </plugin>--> |
| | | <!-- </plugins>--> |
| | | <!-- </build>--> |
| | | |
| | | </project> |