Compare commits

...

2 Commits

Author SHA1 Message Date
ea9e669d71 support deploy nexus 2025-10-13 10:50:15 +08:00
557877411a ignored CopilotChatHistory.xml 2025-10-13 10:50:01 +08:00
3 changed files with 64 additions and 27 deletions

View File

@ -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
View 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
View File

@ -15,6 +15,64 @@
<maven.test.skip>true</maven.test.skip> <maven.test.skip>true</maven.test.skip>
</properties> </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> <dependencies>
<dependency> <dependency>
<groupId>com.imyeyu.java</groupId> <groupId>com.imyeyu.java</groupId>