Skip to content

Commit b768f15

Browse files
authored
Merge pull request #4 from MartinFiorde/main-fork
Main fork
2 parents 7934f1a + 5a03ed7 commit b768f15

33 files changed

Lines changed: 1854 additions & 205 deletions

File tree

build.gradle

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
allprojects {
22
apply plugin: 'java'
33

4-
sourceCompatibility = 1.8
5-
}
4+
java {
5+
toolchain {
6+
languageVersion = JavaLanguageVersion.of(21)
7+
}
8+
sourceCompatibility = JavaVersion.VERSION_21
9+
targetCompatibility = JavaVersion.VERSION_21
10+
}
11+
12+
repositories {
13+
mavenCentral()
14+
}
15+
16+
dependencies {
17+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
18+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
19+
}
20+
}
21+
22+
project(':jobs-search-reporter') {
23+
apply plugin: 'application'
24+
25+
group = 'com.platzi'
26+
version = '0.0.1'
27+
28+
application {
29+
mainClass = 'com.platzi.jobsearch.JobSearch'
30+
applicationName = 'job-search'
31+
}
32+
33+
dependencies {
34+
implementation 'com.beust:jcommander:1.82'
35+
implementation 'io.github.openfeign:feign-core:13.3'
36+
implementation 'io.github.openfeign:feign-gson:13.3'
37+
}
38+
}

docs/Apuntes java functional.docx

644 KB
Binary file not shown.

docs/Functional SE.pdf

1.12 MB
Binary file not shown.
312 KB
Loading

gradle/wrapper/gradle-wrapper.jar

-11.5 KB
Binary file not shown.
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Thu Dec 12 15:29:14 CST 2019
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
31
distributionBase=GRADLE_USER_HOME
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)