File tree 5 files changed +1
-86
lines changed
java/org/eclipse/chedemos
5 files changed +1
-86
lines changed Original file line number Diff line number Diff line change 27
27
</dependencies >
28
28
</dependencyManagement >
29
29
<dependencies >
30
- <dependency >
31
- <groupId >io.quarkus</groupId >
32
- <artifactId >quarkus-undertow</artifactId >
33
- </dependency >
34
30
<dependency >
35
31
<groupId >io.quarkus</groupId >
36
32
<artifactId >quarkus-resteasy</artifactId >
51
47
</dependency >
52
48
<dependency >
53
49
<groupId >io.quarkus</groupId >
54
- <artifactId >quarkus-kubernetes</artifactId >
55
- </dependency >
56
- <dependency >
57
- <groupId >io.quarkus</groupId >
58
50
<artifactId >quarkus-resteasy-jsonb</artifactId >
59
51
</dependency >
60
- <dependency >
61
- <groupId >com.google.guava</groupId >
62
- <artifactId >guava</artifactId >
63
- <version >28.1-jre</version >
64
- </dependency >
65
52
</dependencies >
66
53
<build >
67
54
<plugins >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 15
15
import javax .ws .rs .core .MediaType ;
16
16
import javax .ws .rs .core .Response ;
17
17
18
- import com .google .common .base .Strings ;
19
-
20
- import org .jboss .logging .Logger ;
21
-
22
18
23
19
@ Path ("/posts" )
24
20
@ Produces (MediaType .APPLICATION_JSON )
25
21
@ Consumes (MediaType .APPLICATION_JSON )
26
22
public class PostResource {
27
- private static final Logger LOG = Logger .getLogger (PostResource .class );
28
23
29
24
public PostResource () {
30
25
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # Configuration file
2
- # key = value
3
- quarkus.http.cors =true
4
-
5
- # configure the MongoDB client for a single node cluster on localhost
6
- # quarkus.mongodb.connection-string = mongodb://admin:password@localhost
7
- # quarkus.mongodb.connection-string = mongodb://admin:${admin_password}@mongo
8
1
quarkus.mongodb.connection-string =${uri}
9
2
quarkus.mongodb.credentials.username =${username}
10
3
quarkus.mongodb.credentials.password =${password}
11
- # mandatory if you don't specify the name of the database using @MongoEntity
12
4
quarkus.mongodb.database =sampledb
13
5
14
- # final jar is uber and without suffix so it works with odo without additional
6
+ # final jar is uber and without suffix so it works with odo without additional param
15
7
quarkus.package.uber-jar =true
You can’t perform that action at this time.
0 commit comments