保存进度!

This commit is contained in:
Kane Wang 2022-09-07 17:36:17 +08:00
parent 3a817c18e5
commit 2cf4ed59d5
4 changed files with 56 additions and 0 deletions

21
app-model/pom.xml Normal file
View File

@ -0,0 +1,21 @@
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cpic.xim</groupId>
<artifactId>app-model</artifactId>
<packaging>war</packaging>
<version>1.0</version>
<name>app-model Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>app-model</finalName>
</build>
</project>

View File

@ -0,0 +1,23 @@
/*
* @Author: Kane
* @Date: 2022-09-07 16:50:27
* @LastEditors: Kane
* @LastEditTime: 2022-09-07 17:35:16
* @FilePath: \app-model\src\main\java\AppMain.java
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
/*****************************************************
*
*****************************************************/
public class AppMain
{
public static void main( String[] args )
{
}
private String title = "";
}

View File

@ -0,0 +1,7 @@
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
</web-app>

View File

@ -0,0 +1,5 @@
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>