Compare commits
2 Commits
abf09cee04
...
ea9e669d71
| Author | SHA1 | Date | |
|---|---|---|---|
| ea9e669d71 | |||
| 557877411a |
27
.idea/CopilotChatHistory.xml
generated
27
.idea/CopilotChatHistory.xml
generated
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CopilotChatHistory">
|
||||
<option name="conversations">
|
||||
<list>
|
||||
<Conversation>
|
||||
<option name="createTime" value="1751250353639" />
|
||||
<option name="id" value="0197bea7bde779279917cb804e5ee88c" />
|
||||
<option name="title" value="新对话 2025年6月30日 10:25:53" />
|
||||
<option name="updateTime" value="1751250353639" />
|
||||
</Conversation>
|
||||
<Conversation>
|
||||
<option name="createTime" value="1747188768702" />
|
||||
<option name="id" value="0196cc90dfbe78c5920c82d7d8a91d52" />
|
||||
<option name="title" value="新对话 2025年5月14日 10:12:48" />
|
||||
<option name="updateTime" value="1747188768702" />
|
||||
</Conversation>
|
||||
<Conversation>
|
||||
<option name="createTime" value="1747138499903" />
|
||||
<option name="id" value="0196c991d53f7af28f5401a5deaf4fc6" />
|
||||
<option name="title" value="新对话 2025年5月13日 20:14:59" />
|
||||
<option name="updateTime" value="1747138499903" />
|
||||
</Conversation>
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
58
pom.xml
58
pom.xml
@ -15,6 +15,64 @@
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>3.1.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.11.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>timi_nexus</id>
|
||||
<url>https://nexus.imyeyu.com/repository/maven-releases/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>timi_nexus</id>
|
||||
<url>https://nexus.imyeyu.com/repository/maven-public/</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.imyeyu.java</groupId>
|
||||
|
||||
Reference in New Issue
Block a user