Skip to content

Commit fd106b6

Browse files
author
赵洲
committed
init project
1 parent 531c601 commit fd106b6

7 files changed

Lines changed: 321 additions & 0 deletions

File tree

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Typically *NIX text editors, by default, append '~' to files on saving to make backups
2+
*~
3+
4+
*.java.hsp
5+
*.sonarj
6+
*.sw*
7+
.DS_Store
8+
.settings
9+
.springBeans
10+
bin
11+
build.sh
12+
integration-repo
13+
ivy-cache
14+
jxl.log
15+
jmx.log
16+
derby.log
17+
.gradle
18+
gradle-app.setting
19+
argfile*
20+
pom.xml
21+
activemq-data/
22+
23+
classes
24+
build/
25+
/build
26+
*/build
27+
*/**/build
28+
29+
target/
30+
/target
31+
*/target
32+
*/**/target
33+
34+
# Eclipse artifacts, including WTP generated manifests
35+
.classpath
36+
.project
37+
.metadata
38+
venus-*/src/main/java/META-INF/MANIFEST.MF
39+
40+
# IDEA artifacts and output dirs
41+
*.iml
42+
*.ipr
43+
*.iws
44+
.idea
45+
out
46+
test-output
47+
atlassian-ide-plugin.xml
48+
.gradletasknamecache
49+
/.nb-gradle/

build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
group 'org.simon.javaLib'
2+
version '1.0-SNAPSHOT'
3+
4+
apply plugin: 'java'
5+
6+
sourceCompatibility = 1.5
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
testCompile group: 'junit', name: 'junit', version: '4.11'
14+
}

gradle/wrapper/gradle-wrapper.jar

52.4 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Tue Oct 25 19:41:04 CST 2016
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-bin.zip

gradlew

Lines changed: 160 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'javaselib'
2+

0 commit comments

Comments
 (0)