From 0b9c144b5110a7e2a85b2e5581ef304bb81a3ebc Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 19 九月 2023 19:24:35 +0800
Subject: [PATCH] 修改
---
server/pom.xml | 50 ++++++++++++--------------------------------------
1 files changed, 12 insertions(+), 38 deletions(-)
diff --git a/server/pom.xml b/server/pom.xml
index 8337390..be687ef 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -4,12 +4,16 @@
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>
<groupId>com.doumee</groupId>
- <artifactId>pre_select</artifactId>
+ <artifactId>preselect</artifactId>
<version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
-
- <name>pre_select</name>
+ <packaging>pom</packaging>
+ <name>preselect</name>
<description></description>
+ <modules>
+ <module>platform</module>
+ <module>service</module>
+ <module>company</module>
+ </modules>
<parent>
<groupId>org.springframework.boot</groupId>
@@ -30,7 +34,6 @@
<oshi.version>5.7.0</oshi.version>
<jna.version>5.7.0</jna.version>
<poi.version>5.0.0</poi.version>
- <maven.build.timestamp.format>yyyy-MM-dd-HH-mm</maven.build.timestamp.format>
</properties>
<dependencies>
@@ -198,46 +201,17 @@
<artifactId>jxl</artifactId>
<version>2.6.12</version>
</dependency>
-
</dependencies>
-
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <evn>dev</evn>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <evn>test</evn>
- </properties>
- </profile>
- </profiles>
-
<build>
-
- <finalName>${project.artifactId}</finalName>
-
- <resources>
- <resource>
- <directory>src/main/resources</directory>
-<!-- <filtering>true</filtering>-->
- </resource>
- </resources>
<plugins>
<plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <mainClass>com.doumee.Application</mainClass>
+ <source>${java.version}</source>
+ <target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
-
</project>
--
Gitblit v1.9.3