File tree Expand file tree Collapse file tree 2 files changed +39
-3
lines changed
Expand file tree Collapse file tree 2 files changed +39
-3
lines changed Original file line number Diff line number Diff line change 1+
2+ repositories {
3+ mavenLocal()
4+ mavenCentral()
5+ maven( url = " https://jcenter.bintray.com" )
6+ }
7+
8+
9+ plugins {
10+ `java- library`
11+ }
12+
13+ configurations {
14+ implementation {
15+ resolutionStrategy.failOnVersionConflict()
16+ }
17+ }
18+
19+ java {
20+ sourceCompatibility = JavaVersion .VERSION_17
21+ targetCompatibility = JavaVersion .VERSION_17
22+ }
23+
24+
25+ val EVOMASTER_VERSION = " 1.6.2-SNAPSHOT"
26+
27+ dependencies{
28+ implementation(" org.evomaster:evomaster-client-java-controller:$EVOMASTER_VERSION " )
29+ implementation(" org.evomaster:evomaster-client-java-dependencies:$EVOMASTER_VERSION " )
30+
31+ api(project(" :cs:rest:bibliothek" ))
32+
33+ // Gradle api() is not importing transitive dependencies???
34+ // implementation("org.springframework.boot:spring-boot-starter-web:2.7.0")
35+ // implementation("org.mongodb:mongodb-driver-sync:4.4.2")
36+ }
Original file line number Diff line number Diff line change 11rootProject.name = " emb_jdk_17_gradle"
22
3- // include("cs:graphql:patio-api ")
4- // include("em:embedded:graphql:patio-api ")
5- // include("em:external:graphql:patio-api ")
3+ include(" cs:rest:bibliothek " )
4+ include(" em:embedded:rest:bibliothek " )
5+ // include("em:external:rest:bibliothek ")
66
You can’t perform that action at this time.
0 commit comments