From 95ae5868d358205d5ed70373038baea8e0c2c625 Mon Sep 17 00:00:00 2001 From: qianxj <qianxj15@sina.com> Date: 星期三, 22 二月 2023 18:02:03 +0800 Subject: [PATCH] add module smartor --- smartor/pom.xml | 20 ++++++++++++++++++++ smartor/src/main/java/com/ruoyi/Main.java | 7 +++++++ 2 files changed, 27 insertions(+), 0 deletions(-) diff --git a/smartor/pom.xml b/smartor/pom.xml new file mode 100644 index 0000000..0034496 --- /dev/null +++ b/smartor/pom.xml @@ -0,0 +1,20 @@ +<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>com.ruoyi</groupId> + <artifactId>ruoyi</artifactId> + <version>3.8.5</version> + </parent> + + <artifactId>smartor</artifactId> + + <properties> + <maven.compiler.source>19</maven.compiler.source> + <maven.compiler.target>19</maven.compiler.target> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + +</project> \ No newline at end of file diff --git a/smartor/src/main/java/com/ruoyi/Main.java b/smartor/src/main/java/com/ruoyi/Main.java new file mode 100644 index 0000000..3bf017d --- /dev/null +++ b/smartor/src/main/java/com/ruoyi/Main.java @@ -0,0 +1,7 @@ +package com.ruoyi; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file -- Gitblit v1.9.3