Skip to content

Commit 7614c2a

Browse files
committed
Fix issue on branch 1.X.X
Signed-off-by: Rahul Krishna <i.m.ralk@gmail.com>
1 parent 594f8d9 commit 7614c2a

File tree

10 files changed

+441
-0
lines changed

10 files changed

+441
-0
lines changed

src/test/resources/test-applications/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ target/
3838
*.iws
3939
*.ipr
4040

41+
!gradle-wrapper.jar
42+
4143
# Ignore Eclipse files
4244
.settings/
4345
*.classpath
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Ignore Gradle project-specific cache directory
2+
.gradle
3+
4+
# Ignore Gradle build output directory
5+
build
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
plugins {
2+
id 'application'
3+
}
4+
5+
repositories {
6+
mavenCentral()
7+
}
8+
9+
java {
10+
sourceCompatibility = JavaVersion.VERSION_11
11+
targetCompatibility = JavaVersion.VERSION_11
12+
}
13+
14+
if (project.hasProperty('mainClass')) {
15+
mainClassName = project.getProperty('mainClass')
16+
} else {
17+
// use a default
18+
mainClassName =("org.example.User")
19+
}
20+
21+
sourceSets {
22+
main {
23+
java {
24+
srcDirs = ["src/main/java"]
25+
}
26+
resources {
27+
srcDirs = ["src/main/resources"]
28+
}
29+
}
30+
}
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

src/test/resources/test-applications/call-graph-test/gradlew

Lines changed: 251 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)