Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
小小白鸽
springboot-template
提交
bc83343f
S
springboot-template
项目概览
小小白鸽
/
springboot-template
与 Fork 源项目一致
Fork自
inscode / Java
通知
1
Star
5
Fork
13
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
springboot-template
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
bc83343f
编写于
4月 21, 2023
作者:
6
632d6423b4d9145d677b07db
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
UPDATE
上级
5b0ce43e
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
51 addition
and
59 deletion
+51
-59
.inscode
.inscode
+1
-1
Main.class
Main.class
+0
-0
Main.java
Main.java
+0
-5
inscode.nix
inscode.nix
+1
-1
pom.xml
pom.xml
+39
-52
src/main/java/com/lhstack/TemplateApplication.java
src/main/java/com/lhstack/TemplateApplication.java
+10
-0
src/main/resources/config.properties
src/main/resources/config.properties
+0
-0
target/classes/config.properties
target/classes/config.properties
+0
-0
未找到文件。
.inscode
浏览文件 @
bc83343f
run = "
java Main.java
"
run = "
mvn -Dmaven.test.skip=true clean package
"
Main.class
已删除
100644 → 0
浏览文件 @
5b0ce43e
文件已删除
Main.java
已删除
100644 → 0
浏览文件 @
5b0ce43e
class
Main
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello world!"
);
}
}
\ No newline at end of file
inscode.nix
浏览文件 @
bc83343f
{
pkgs
}:
{
{
pkgs
}:
{
deps
=
[
deps
=
[
pkgs
.
graalvm1
7
-ce
pkgs
.
graalvm1
1
-ce
pkgs
.
maven
pkgs
.
maven
];
];
}
}
\ No newline at end of file
pom.xml
浏览文件 @
bc83343f
<project>
<?xml version="1.0" encoding="UTF-8"?>
<modelVersion>
4.0.0
</modelVersion>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
<groupId>
mygroupid
</groupId>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<artifactId>
myartifactid
</artifactId>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<version>
0.0-SNAPSHOT
</version>
<modelVersion>
4.0.0
</modelVersion>
<dependencies>
<parent>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
junit
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<artifactId>
junit
</artifactId>
<version>
3.0.6
</version>
<version>
4.12
</version>
<relativePath/>
<!-- lookup parent from repository -->
<type>
jar
</type>
</parent>
</dependency>
<groupId>
com.lhstack
</groupId>
<dependency>
<artifactId>
template
</artifactId>
<groupId>
com.googlecode.json-simple
</groupId>
<version>
1.0-SNAPSHOT
</version>
<artifactId>
json-simple
</artifactId>
<properties>
<version>
1.1.1
</version>
<java.version>
17
</java.version>
<type>
jar
</type>
</properties>
</dependency>
<dependencies>
<dependency>
<dependency>
<groupId>
org.hamcrest
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
hamcrest-core
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
<version>
1.3
</version>
</dependency>
<type>
jar
</type>
</dependency>
<dependency>
</dependencies>
<groupId>
org.springframework.boot
</groupId>
<build>
<artifactId>
spring-boot-starter-test
</artifactId>
<plugins>
<scope>
test
</scope>
<plugin>
</dependency>
<groupId>
de.qaware.maven
</groupId>
</dependencies>
<artifactId>
go-offline-maven-plugin
</artifactId>
<version>
1.2.5
</version>
<build>
<configuration>
<plugins>
<dynamicDependencies>
<plugin>
<DynamicDependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.apache.maven.surefire
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<artifactId>
surefire-junit4
</artifactId>
</plugin>
<version>
2.20.1
</version>
</plugins>
<classifier></classifier>
</build>
<repositoryType>
PLUGIN
</repositoryType>
</DynamicDependency>
<DynamicDependency>
<groupId>
com.querydsl
</groupId>
<artifactId>
querydsl-apt
</artifactId>
<version>
4.2.1
</version>
<classifier>
jpa
</classifier>
<repositoryType>
MAIN
</repositoryType>
</DynamicDependency>
</dynamicDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
\ No newline at end of file
src/main/java/com/lhstack/TemplateApplication.java
0 → 100644
浏览文件 @
bc83343f
package
com.lhstack
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
TemplateApplication
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"hello world"
);
}
}
src/main/resources/config.properties
0 → 100644
浏览文件 @
bc83343f
target/classes/config.properties
0 → 100644
浏览文件 @
bc83343f
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录