Compare commits

...

2 Commits

Author SHA1 Message Date
lijunming 4791119ff5 Merge branch 'main' of http://v4.9ms.co:7777/liushuyang/Visual_Novel_Server
Merge local and remote repositories
2025-09-23 16:19:26 +08:00
lijunming c7aa618a69 Initial commit 2025-09-23 16:10:59 +08:00
5 changed files with 114 additions and 0 deletions

33
.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
HELP.md
target/
.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/

54
pom.xml Normal file
View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.10</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.touka</groupId>
<artifactId>visualNovelServer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>visualNovelServer</name>
<description>visualNovelServer</description>
<url/>
<licenses>
<license/>
</licenses>
<developers>
<developer/>
</developers>
<scm>
<connection/>
<developerConnection/>
<tag/>
<url/>
</scm>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,13 @@
package com.touka.visualnovelserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class VisualNovelServerApplication {
public static void main(String[] args) {
SpringApplication.run(VisualNovelServerApplication.class, args);
}
}

View File

@ -0,0 +1 @@
spring.application.name=visualNovelServer

View File

@ -0,0 +1,13 @@
package com.touka.visualnovelserver;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class VisualNovelServerApplicationTests {
@Test
void contextLoads() {
}
}