From 8d54cbb1bbb8e31978d979833aeb0dd1b2848d4e Mon Sep 17 00:00:00 2001 From: shichongfu <shi_chongfu@163.com> Date: 星期五, 17 二月 2023 18:55:23 +0800 Subject: [PATCH] init --- pom.xml | 70 ++++------------------------------- 1 files changed, 8 insertions(+), 62 deletions(-) diff --git a/pom.xml b/pom.xml index 891cd7d..024463c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,10 +4,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> - <groupId>com.lx</groupId> - <artifactId>product-server</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>2.1.3.RELEASE</version> </parent> + <groupId>com.lx</groupId> + <version>2.0.0</version> <artifactId>product-server-seal</artifactId> <name>product-server-seal</name> <description>product-server-seal</description> @@ -15,17 +17,17 @@ <dependency> <groupId>com.lx</groupId> <artifactId>product-server-common</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.0</version> </dependency> <dependency> <groupId>com.lx</groupId> <artifactId>product-server-util</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.0</version> </dependency> <dependency> <groupId>com.lx</groupId> <artifactId>product-server-core</artifactId> - <version>1.0.0-releases</version> + <version>2.0.0</version> </dependency> <dependency> <groupId>org.spring</groupId> @@ -33,60 +35,4 @@ <version>1.2.6.6</version> </dependency> </dependencies> - <build> - <plugins> - <!-- 鎵揓AR鍖� --> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <configuration> - <!-- 涓嶆墦鍖呰祫婧愭枃浠讹紙閰嶇疆鏂囦欢鍜屼緷璧栧寘鍒嗗紑锛� --> - <excludes> - <exclude>*.properties</exclude> - <exclude>*.xml</exclude> - </excludes> - <archive> - <manifest> - <addClasspath>true</addClasspath> - <!-- MANIFEST.MF 涓� Class-Path 鍔犲叆鍓嶇紑 --> - <classpathPrefix>lib/</classpathPrefix> - <!-- jar鍖呬笉鍖呭惈鍞竴鐗堟湰鏍囪瘑 --> - <useUniqueVersions>true</useUniqueVersions> - <!--鎸囧畾鍏ュ彛绫� --> - <mainClass>com.product.Application</mainClass> - </manifest> - <manifestEntries> - <!--MANIFEST.MF 涓� Class-Path 鍔犲叆璧勬簮鏂囦欢鐩綍 --> - <Class-Path>./resources/</Class-Path> - </manifestEntries> - - </archive> - <outputDirectory>${project.build.directory}</outputDirectory> - </configuration> - </plugin> - <!-- 鎷疯礉鏂囦欢 --> - <plugin> - <artifactId>maven-antrun-plugin</artifactId> - <executions> - <execution> - <id>copy</id> - <phase>package</phase> - <configuration> - <tasks> - <copy file="${project.build.directory}/product-server-seal-1.0.0-SNAPSHOT.jar" - tofile="D:/product/workspace/product-server-install/resources/product-server/product-server-web-1.0.0-SNAPSHOT.jar" - overwrite="true"/> - </tasks> - - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - </executions> - </plugin> - - </plugins> - </build> </project> -- Gitblit v1.9.2