Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
springboot-demo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Leona
W
web
backend
springboot-demo
Commits
bd09b7cb
Commit
bd09b7cb
authored
Jun 30, 2020
by
duanledexianxianxian
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改包名称
parent
0508e072
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
1 deletion
+62
-1
demo/src/main/kotlin/com.duanledexianxianxian.demo/Test.kt
demo/src/main/kotlin/com.duanledexianxianxian.demo/Test.kt
+3
-0
pom.xml
pom.xml
+59
-1
No files found.
demo/src/main/kotlin/com.duanledexianxianxian.demo/Test.kt
0 → 100644
View file @
bd09b7cb
fun
main
(
args
:
Array
<
String
>)
{
println
(
"Hello World"
)
}
\ No newline at end of file
pom.xml
View file @
bd09b7cb
...
...
@@ -26,6 +26,11 @@
<version>
1.18.10
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
com.github.fengyuchenglun
</groupId>
<artifactId>
kim-boot-util
</artifactId>
<version>
1.0.13
</version>
</dependency>
<dependency>
<groupId>
com.jayway.jsonpath
</groupId>
<artifactId>
json-path
</artifactId>
...
...
@@ -81,8 +86,28 @@
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>
com.github.fengyuchenglun
</groupId>
<artifactId>
kim-boot-util
</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>
org.jetbrains.kotlin
</groupId>
<artifactId>
kotlin-stdlib-jdk8
</artifactId>
<version>
${kotlin.version}
</version>
</dependency>
<dependency>
<groupId>
org.jetbrains.kotlin
</groupId>
<artifactId>
kotlin-test
</artifactId>
<version>
${kotlin.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.jetbrains.kotlin
</groupId>
<artifactId>
kotlin-reflect
</artifactId>
<version>
${kotlin.version}
</version>
</dependency>
</dependencies>
...
...
@@ -97,6 +122,39 @@
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.jetbrains.kotlin
</groupId>
<artifactId>
kotlin-maven-plugin
</artifactId>
<version>
${kotlin.version}
</version>
<executions>
<execution>
<id>
compile
</id>
<phase>
compile
</phase>
<goals>
<goal>
compile
</goal>
</goals>
<configuration>
<sourceDirs>
<source>
${project.basedir}/src/main/java
</source>
<source>
${project.basedir}/src/main/kotlin
</source>
</sourceDirs>
</configuration>
</execution>
<execution>
<id>
test-compile
</id>
<phase>
test-compile
</phase>
<goals>
<goal>
test-compile
</goal>
</goals>
<configuration>
<sourceDirs>
<source>
${project.basedir}/src/test/java
</source>
<source>
${project.basedir}/src/test/kotlin
</source>
</sourceDirs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment