Compare commits

...

2 Commits

Author SHA1 Message Date
bc243e27b1 打包库文件到jar包 2025-09-14 15:12:59 +08:00
6e6cfcc46f 修改配置文件和去掉打包时test模块 2025-09-14 14:58:52 +08:00
4 changed files with 58 additions and 7 deletions

View File

@ -3,7 +3,9 @@
<component name="MaterialThemeProjectNewConfig">
<option name="metadata">
<MTProjectMetadataState>
<option name="userId" value="d332453:19946490ddb:-7fff" />
<option name="migrated" value="true" />
<option name="pristineConfig" value="false" />
<option name="userId" value="d332453:19946490ddb:-7ffe" />
</MTProjectMetadataState>
</option>
</component>

View File

@ -8,7 +8,7 @@
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -4,7 +4,10 @@
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="050b8051-b1ec-42aa-bac3-c1c189a4697d" name="更改" comment="" />
<list default="true" id="050b8051-b1ec-42aa-bac3-c1c189a4697d" name="更改" comment="修改配置文件和去掉打包时test模块">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@ -17,6 +20,9 @@
</list>
</option>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="KubernetesApiPersistence">{}</component>
<component name="KubernetesApiProvider">{
&quot;isMigrated&quot;: true
@ -32,6 +38,12 @@
</MavenGeneralSettings>
</option>
</component>
<component name="MavenRunner">
<option name="skipTests" value="true" />
</component>
<component name="ProblemsViewState">
<option name="selectedTabId" value="CurrentFile" />
</component>
<component name="ProjectColorInfo">{
&quot;associatedIndex&quot;: 7
}</component>
@ -43,22 +55,26 @@
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"Maven.SimulationService [compile].executor": "Run",
"Maven.SimulationService [package].executor": "Run",
"ModuleVcsDetector.initialDetectionPerformed": "true",
"RequestMappingsPanelOrder0": "0",
"RequestMappingsPanelOrder1": "1",
"RequestMappingsPanelWidth0": "75",
"RequestMappingsPanelWidth1": "75",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.git.unshallow": "true",
"Spring Boot.SimulationService.executor": "Debug",
"git-widget-placeholder": "master",
"last_opened_file_path": "D:/work/JavaProject/SimulationService/pom.xml",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
"node.js.selected.package.tslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
"project.structure.last.edited": "项目",
"project.structure.last.edited": "问题",
"project.structure.proportion": "0.15",
"project.structure.side.proportion": "0.37011495",
"settings.editor.selected.configurable": "preferences.pluginManager",
"settings.editor.selected.configurable": "MavenSettings",
"vue.rearranger.settings.migration": "true"
},
"keyToStringList": {
@ -106,12 +122,37 @@
<workItem from="1757594198944" duration="2502000" />
<workItem from="1757664586037" duration="3070000" />
<workItem from="1757820561153" duration="249000" />
<workItem from="1757829080725" duration="4245000" />
</task>
<task id="LOCAL-00001" summary="修改配置文件和去掉打包时test模块">
<option name="closed" value="true" />
<created>1757833150037</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1757833150037</updated>
</task>
<option name="localTasksCounter" value="2" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="修改配置文件和去掉打包时test模块" />
<option name="LAST_COMMIT_MESSAGE" value="修改配置文件和去掉打包时test模块" />
</component>
<component name="XSLT-Support.FileAssociations.UIState">
<expand />
<select />

12
pom.xml
View File

@ -127,13 +127,22 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- 配置项,如需要 -->
<!-- maven 打包时跳过测试 -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<mainClass>com.simulationservice.SimulationServiceApplication</mainClass>
<skip>true</skip>
<!-- <skip>true</skip> -->
</configuration>
<executions>
<execution>
@ -146,5 +155,4 @@
</plugin>
</plugins>
</build>
</project>