|
18 | 18 | <groupId>life.qbic.datamanager</groupId> |
19 | 19 | <artifactId>domain-concept</artifactId> |
20 | 20 | </dependency> |
| 21 | + <dependency> |
| 22 | + <groupId>life.qbic.datamanager</groupId> |
| 23 | + <artifactId>finances-api</artifactId> |
| 24 | + </dependency> |
21 | 25 | <dependency> |
22 | 26 | <groupId>life.qbic.datamanager</groupId> |
23 | 27 | <artifactId>logging</artifactId> |
|
29 | 33 |
|
30 | 34 | <!-- Spring dependencies--> |
31 | 35 | <dependency> |
32 | | - <groupId>org.springframework.boot</groupId> |
33 | | - <artifactId>spring-boot-test</artifactId> |
34 | | - <scope>test</scope> |
| 36 | + <groupId>org.springframework.security</groupId> |
| 37 | + <artifactId>spring-security-acl</artifactId> |
35 | 38 | </dependency> |
36 | 39 | <dependency> |
37 | | - <groupId>org.springframework.boot</groupId> |
38 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 40 | + <groupId>org.springframework.security</groupId> |
| 41 | + <artifactId>spring-security-oauth2-core</artifactId> |
39 | 42 | </dependency> |
40 | 43 | <dependency> |
41 | | - <groupId>org.springframework.boot</groupId> |
42 | | - <artifactId>spring-boot-starter-json</artifactId> |
| 44 | + <groupId>org.springframework</groupId> |
| 45 | + <artifactId>spring-beans</artifactId> |
43 | 46 | </dependency> |
44 | 47 | <dependency> |
45 | 48 | <groupId>org.springframework.security</groupId> |
46 | | - <artifactId>spring-security-acl</artifactId> |
| 49 | + <artifactId>spring-security-core</artifactId> |
47 | 50 | </dependency> |
48 | 51 | <dependency> |
49 | | - <groupId>org.springframework.security</groupId> |
50 | | - <artifactId>spring-security-oauth2-core</artifactId> |
| 52 | + <groupId>org.springframework.data</groupId> |
| 53 | + <artifactId>spring-data-commons</artifactId> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>net.javacrumbs.shedlock</groupId> |
| 57 | + <artifactId>shedlock-core</artifactId> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.springframework</groupId> |
| 61 | + <artifactId>spring-context</artifactId> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.springframework</groupId> |
| 65 | + <artifactId>spring-core</artifactId> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>jakarta.persistence</groupId> |
| 69 | + <artifactId>jakarta.persistence-api</artifactId> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.springframework</groupId> |
| 73 | + <artifactId>spring-jdbc</artifactId> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.springframework</groupId> |
| 77 | + <artifactId>spring-tx</artifactId> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>org.springframework</groupId> |
| 81 | + <artifactId>spring-orm</artifactId> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.jspecify</groupId> |
| 85 | + <artifactId>jspecify</artifactId> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 89 | + <artifactId>jackson-annotations</artifactId> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.reactivestreams</groupId> |
| 93 | + <artifactId>reactive-streams</artifactId> |
51 | 94 | </dependency> |
52 | 95 |
|
53 | 96 | <!-- Third Party--> |
54 | 97 | <dependency> |
55 | 98 | <groupId>io.projectreactor</groupId> |
56 | 99 | <artifactId>reactor-core</artifactId> |
57 | 100 | </dependency> |
58 | | - <dependency> |
59 | | - <groupId>net.javacrumbs.shedlock</groupId> |
60 | | - <artifactId>shedlock-spring</artifactId> |
61 | | - </dependency> |
62 | 101 | <dependency> |
63 | 102 | <groupId>net.javacrumbs.shedlock</groupId> |
64 | 103 | <artifactId>shedlock-provider-jdbc-template</artifactId> |
|
67 | 106 | <groupId>org.jobrunr</groupId> |
68 | 107 | <artifactId>jobrunr</artifactId> |
69 | 108 | </dependency> |
| 109 | + |
70 | 110 | <dependency> |
71 | | - <groupId>life.qbic.datamanager</groupId> |
72 | | - <artifactId>finances-api</artifactId> |
| 111 | + <groupId>org.hibernate.orm</groupId> |
| 112 | + <artifactId>hibernate-core</artifactId> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 116 | + <artifactId>jackson-core</artifactId> |
73 | 117 | </dependency> |
74 | 118 |
|
75 | | - |
| 119 | + <!-- Test Dependencies--> |
| 120 | + <dependency> |
| 121 | + <groupId>org.mockito</groupId> |
| 122 | + <artifactId>mockito-core</artifactId> |
| 123 | + <scope>test</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.junit.jupiter</groupId> |
| 127 | + <artifactId>junit-jupiter-api</artifactId> |
| 128 | + <scope>test</scope> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>io.projectreactor</groupId> |
| 132 | + <artifactId>reactor-test</artifactId> |
| 133 | + <scope>test</scope> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.apache.groovy</groupId> |
| 137 | + <artifactId>groovy</artifactId> |
| 138 | + <scope>test</scope> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>org.spockframework</groupId> |
| 142 | + <artifactId>spock-core</artifactId> |
| 143 | + <scope>test</scope> |
| 144 | + </dependency> |
76 | 145 | </dependencies> |
77 | 146 | </project> |
0 commit comments