Skip to content

Commit c2e7493

Browse files
committed
Ignore idea and gradle outputs
1 parent 17d2861 commit c2e7493

File tree

6 files changed

+310
-0
lines changed

6 files changed

+310
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
*.class
2+
.git
3+
.gradle
4+
build
25
*.svn
36
*~
47
target
8+
*.ipr
9+
*.iml
10+
*.iws
511
.settings
612
.project
713
.classpath

build.gradle

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
apply plugin: 'java'
2+
apply plugin: 'idea'
3+
apply plugin: 'maven'
4+
5+
6+
repositories {
7+
mavenLocal()
8+
mavenCentral()
9+
}
10+
11+
group = 'org.java_websocket'
12+
version = '1.2.1-SNAPSHOT'
13+
sourceCompatibility = 1.6
14+
targetCompatibility = 1.6
15+
16+
configurations {
17+
deployerJars
18+
}
19+
20+
configure(install.repositories.mavenInstaller) {
21+
pom.version = project.version
22+
pom.groupId = "org.java_websocket"
23+
pom.artifactId = 'Java-WebSocket'
24+
}
25+
26+
dependencies {
27+
deployerJars "org.apache.maven.wagon:wagon-webdav:1.0-beta-2"
28+
}
29+
30+
31+
//deploy to maven repository
32+
//uploadArchives {
33+
// repositories.mavenDeployer {
34+
// configuration = configurations.deployerJars
35+
// repository(url: repositoryUrl) {
36+
// authentication(userName: repositoryUsername, password: repositoryPassword)
37+
// }
38+
// }
39+
//}
40+
41+
task wrapper(type: Wrapper) {
42+
gradleVersion = '1.4'
43+
}
44+

gradle/wrapper/gradle-wrapper.jar

44.3 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Wed Feb 13 00:13:35 GMT 2013
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.4-bin.zip

gradlew

Lines changed: 164 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.

0 commit comments

Comments
 (0)