| | |
| | | <artifactId>UserAgentUtils</artifactId> |
| | | <version>1.20</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/com.github.jsqlparser/jsqlparser --> |
| | | <dependency> |
| | | <groupId>com.github.jsqlparser</groupId> |
| | | <artifactId>jsqlparser</artifactId> |
| | | <version>4.9</version> |
| | | </dependency> |
| | | |
| | | <!--开启 cache 缓存 --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <version>2022.1-SNAPSHOT</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.vci.client</groupId> |
| | | <artifactId>plt-client</artifactId> |
| | | <version>1.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.reflections</groupId> |
| | | <artifactId>reflections</artifactId> |
| | | <version>0.9.11</version> |
| | |
| | | <build> |
| | | <finalName>vci-platform-web</finalName> |
| | | <plugins> |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.apache.maven.plugins</groupId>--> |
| | | <!-- <artifactId>maven-jar-plugin</artifactId>--> |
| | | <!-- <configuration>--> |
| | | <!-- <archive>--> |
| | | <!-- <manifest>--> |
| | | <!-- <addClasspath>false</addClasspath>--> |
| | | <!-- <classpathPrefix>lib/</classpathPrefix>--> |
| | | <!-- <useUniqueVersions>false</useUniqueVersions>--> |
| | | <!-- </manifest>--> |
| | | <!-- </archive>--> |
| | | <!-- <excludes>--> |
| | | <!-- <exclude>application-prod.yml</exclude>--> |
| | | <!-- <exclude>application-db.yml</exclude>--> |
| | | <!-- <exclude>properties/conf.properties</exclude>--> |
| | | <!-- </excludes>--> |
| | | <!-- </configuration>--> |
| | | <!-- </plugin>--> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-dependency-plugin</artifactId> |
| | | <version>2.8</version> |
| | | <executions> |
| | | <execution> |
| | | <id>copy</id> |
| | | <phase>package</phase> |
| | | <goals> |
| | | <goal>copy-dependencies</goal> |
| | | </goals> |
| | | <configuration> |
| | | <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| | | <!-- <excludeGroupIds>com.vci.platform</excludeGroupIds>--> |
| | | </configuration> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-jar-plugin</artifactId> |
| | | <version>3.0.2</version> |
| | | <configuration> |
| | | <archive> |
| | | <manifest> |
| | | <addClasspath>false</addClasspath> |
| | | <addClasspath>true</addClasspath> |
| | | <classpathPrefix>lib/</classpathPrefix> |
| | | <useUniqueVersions>false</useUniqueVersions> |
| | | </manifest> |
| | | </archive> |
| | | <excludes> |
| | | <exclude>application-prod.yml</exclude> |
| | | <exclude>application-db.yml</exclude> |
| | | <exclude>properties/conf.properties</exclude> |
| | | <exclude>properties/eventConf.properties</exclude> |
| | | <exclude>lib/*</exclude> |
| | | </excludes> |
| | | </configuration> |
| | | </plugin> |