Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 1a45027

Browse files
authored
Cleanup exercises (#3)
* Adds default Quarkus gitignore * Cleanup exercises and dependencies
1 parent 3d92b8b commit 1a45027

File tree

141 files changed

+144
-3407
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+144
-3407
lines changed

.gitignore

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,39 @@
1-
# Java build artefacts
1+
#Maven
22
target/
3+
pom.xml.tag
4+
pom.xml.releaseBackup
5+
pom.xml.versionsBackup
6+
release.properties
37

4-
# Maven artifacts
8+
# Eclipse
9+
.project
10+
.classpath
11+
.settings/
12+
bin/
513

6-
.mvn
14+
# IntelliJ
15+
.idea
16+
*.ipr
17+
*.iml
18+
*.iws
719

8-
# IDE specific artifacts
20+
# NetBeans
21+
nb-configuration.xml
922

10-
.idea
23+
# Visual Studio Code
1124
.vscode
25+
.factorypath
1226

13-
# OS specific artifacts
27+
# OSX
1428
.DS_Store
29+
30+
# Vim
31+
*.swp
32+
*.swo
33+
34+
# patch
35+
*.orig
36+
*.rej
37+
38+
# Local environment
39+
.env

code/exercise_001_initial_state/EXERCISES.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

code/exercise_001_initial_state/docker-compose.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

code/exercise_001_initial_state/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,6 @@
3333
<groupId>io.quarkus</groupId>
3434
<artifactId>quarkus-resteasy</artifactId>
3535
</dependency>
36-
<dependency>
37-
<groupId>io.quarkus</groupId>
38-
<artifactId>quarkus-resteasy-jackson</artifactId>
39-
</dependency>
40-
<dependency>
41-
<groupId>io.quarkus</groupId>
42-
<artifactId>quarkus-resteasy-jsonb</artifactId>
43-
</dependency>
44-
<dependency>
45-
<groupId>io.quarkus</groupId>
46-
<artifactId>quarkus-resteasy-qute</artifactId>
47-
</dependency>
48-
<dependency>
49-
<groupId>io.quarkus</groupId>
50-
<artifactId>quarkus-arc</artifactId>
51-
</dependency>
5236
<dependency>
5337
<groupId>io.quarkus</groupId>
5438
<artifactId>quarkus-junit5</artifactId>

code/exercise_002_a_qute_hello_world/EXERCISES.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

code/exercise_002_a_qute_hello_world/docker-compose.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

code/exercise_002_a_qute_hello_world/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,10 @@
2929
</dependencies>
3030
</dependencyManagement>
3131
<dependencies>
32-
<dependency>
33-
<groupId>io.quarkus</groupId>
34-
<artifactId>quarkus-resteasy</artifactId>
35-
</dependency>
36-
<dependency>
37-
<groupId>io.quarkus</groupId>
38-
<artifactId>quarkus-resteasy-jackson</artifactId>
39-
</dependency>
40-
<dependency>
41-
<groupId>io.quarkus</groupId>
42-
<artifactId>quarkus-resteasy-jsonb</artifactId>
43-
</dependency>
4432
<dependency>
4533
<groupId>io.quarkus</groupId>
4634
<artifactId>quarkus-resteasy-qute</artifactId>
4735
</dependency>
48-
<dependency>
49-
<groupId>io.quarkus</groupId>
50-
<artifactId>quarkus-arc</artifactId>
51-
</dependency>
5236
<dependency>
5337
<groupId>io.quarkus</groupId>
5438
<artifactId>quarkus-junit5</artifactId>

code/exercise_003_qute_products/EXERCISES.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

code/exercise_003_qute_products/docker-compose.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

code/exercise_003_qute_products/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,10 @@
2929
</dependencies>
3030
</dependencyManagement>
3131
<dependencies>
32-
<dependency>
33-
<groupId>io.quarkus</groupId>
34-
<artifactId>quarkus-resteasy</artifactId>
35-
</dependency>
36-
<dependency>
37-
<groupId>io.quarkus</groupId>
38-
<artifactId>quarkus-resteasy-jackson</artifactId>
39-
</dependency>
40-
<dependency>
41-
<groupId>io.quarkus</groupId>
42-
<artifactId>quarkus-resteasy-jsonb</artifactId>
43-
</dependency>
4432
<dependency>
4533
<groupId>io.quarkus</groupId>
4634
<artifactId>quarkus-resteasy-qute</artifactId>
4735
</dependency>
48-
<dependency>
49-
<groupId>io.quarkus</groupId>
50-
<artifactId>quarkus-arc</artifactId>
51-
</dependency>
5236
<dependency>
5337
<groupId>io.quarkus</groupId>
5438
<artifactId>quarkus-junit5</artifactId>

0 commit comments

Comments
 (0)