Skip to content

Commit 52e25ba

Browse files
init project add
0 parents  commit 52e25ba

File tree

5 files changed

+170
-0
lines changed

5 files changed

+170
-0
lines changed

.gitignore

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/build/www/**
5+
/src/test/javascript/coverage/
6+
/src/test/javascript/PhantomJS*/
7+
8+
######################
9+
# Node
10+
######################
11+
/node/
12+
node_tmp/
13+
node_modules/
14+
npm-debug.log.*
15+
16+
######################
17+
# SASS
18+
######################
19+
.sass-cache/
20+
21+
######################
22+
# Eclipse
23+
######################
24+
*.pydevproject
25+
.project
26+
.metadata
27+
tmp/
28+
tmp/**/*
29+
*.tmp
30+
*.bak
31+
*.swp
32+
*~.nib
33+
local.properties
34+
.classpath
35+
.settings/
36+
.loadpath
37+
.factorypath
38+
/src/main/resources/rebel.xml
39+
40+
# External tool builders
41+
.externalToolBuilders/**
42+
43+
# Locally stored "Eclipse launch configurations"
44+
*.launch
45+
46+
# CDT-specific
47+
.cproject
48+
49+
# PDT-specific
50+
.buildpath
51+
52+
######################
53+
# Intellij
54+
######################
55+
.idea/
56+
*.iml
57+
*.iws
58+
*.ipr
59+
*.ids
60+
*.orig
61+
62+
######################
63+
# Visual Studio Code
64+
######################
65+
.vscode/
66+
67+
######################
68+
# Maven
69+
######################
70+
/log/
71+
/target/
72+
/wells-fargo-ach-service/target/**
73+
/wells-fargo-api-client/target/**
74+
75+
######################
76+
# Gradle
77+
######################
78+
.gradle/
79+
/build/
80+
81+
######################
82+
# Package Files
83+
######################
84+
*.jar
85+
*.war
86+
*.ear
87+
*.db
88+
89+
######################
90+
# Windows
91+
######################
92+
# Windows image file caches
93+
Thumbs.db
94+
95+
# Folder config file
96+
Desktop.ini
97+
98+
######################
99+
# Mac OSX
100+
######################
101+
.DS_Store
102+
.svn
103+
104+
# Thumbnails
105+
._*
106+
107+
# Files that might appear on external disk
108+
.Spotlight-V100
109+
.Trashes
110+
111+
######################
112+
# Directories
113+
######################
114+
/bin/
115+
/deploy/
116+
117+
######################
118+
# Logs
119+
######################
120+
*.log
121+
122+
######################
123+
# Others
124+
######################
125+
*.class
126+
*.*~
127+
*~
128+
.merge_file*
129+
130+
######################
131+
# Gradle Wrapper
132+
######################
133+
!gradle/wrapper/gradle-wrapper.jar
134+
135+
######################
136+
# Maven Wrapper
137+
######################
138+
!.mvn/wrapper/maven-wrapper.jar
139+
140+
######################
141+
# ESLint
142+
######################
143+
.eslintcache

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>guru.springframework</groupId>
8+
<artifactId>hello-world</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14+
<java.version>11</java.version>
15+
<maven.compiler.source>${java.version}</maven.compiler.source>
16+
<maven.compiler.target>${java.version}</maven.compiler.target>
17+
</properties>
18+
</project>

src/main/java/HelloWorld.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
* Created by jt on 2018-11-26.
3+
*/
4+
public class HelloWorld {
5+
6+
public static void main(String[] args) {
7+
System.out.println("Hello World!!!! ");
8+
}
9+
}

src/main/resources/application.properties

Whitespace-only changes.

src/test/java/package-info.java

Whitespace-only changes.

0 commit comments

Comments
 (0)