forked from ls1intum/Artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reuse dependencies fromm root project
- Loading branch information
1 parent
42ef7f0
commit b0b3795
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,6 +197,9 @@ repositories { | |
ext["jackson.version"] = fasterxml_version | ||
ext["junit-jupiter.version"] = junit_version | ||
|
||
ext { qDox = "com.thoughtworks.qdox:qdox:2.1.0" } | ||
ext { springBootStarterWeb = "org.springframework.boot:spring-boot-starter-web:${spring_boot_version}" } | ||
|
||
dependencies { | ||
|
||
// Note: jenkins-client is not well maintained and includes dependencies to libraries with critical security issues (e.g. CVE-2020-10683 for [email protected]) | ||
|
@@ -263,7 +266,7 @@ dependencies { | |
} | ||
} | ||
|
||
implementation "com.thoughtworks.qdox:qdox:2.1.0" | ||
implementation qDox | ||
implementation "io.sentry:sentry-logback:${sentry_version}" | ||
implementation "io.sentry:sentry-spring-boot-starter-jakarta:${sentry_version}" | ||
|
||
|
@@ -328,7 +331,7 @@ dependencies { | |
implementation "org.springframework.boot:spring-boot-starter-aop:${spring_boot_version}" | ||
implementation "org.springframework.boot:spring-boot-starter-data-jpa:${spring_boot_version}" | ||
implementation "org.springframework.boot:spring-boot-starter-security:${spring_boot_version}" | ||
implementation("org.springframework.boot:spring-boot-starter-web:${spring_boot_version}") { | ||
implementation(springBootStarterWeb) { | ||
exclude module: "spring-boot-starter-undertow" | ||
} | ||
implementation "org.springframework.boot:spring-boot-starter-tomcat:${spring_boot_version}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters