Skip to content

Commit

Permalink
Fixed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmathew committed Jul 5, 2024
1 parent 6848c34 commit eb4d318
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions admin-server/README.md → modules/admin-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ DATASOURCE_URL=<URL>

To build
<br>
```./gradlew admin-server:build```
```./gradlew :modules:admin-server:build```

To run
<br>
```./gradlew admin-server:bootRun```
```./gradlew :modules:admin-server:bootRun```

To run tests
<br>
```./gradlew admin-server:test```
```./gradlew :modules:admin-server:test```
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
application
}

group = "com.sphereon.oid.fed"
group = "com.sphereon.oid.fed.server.admin"
version = "1.0.0"

java {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sphereon.oid.fed
package com.sphereon.oid.fed.server.admin

import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sphereon.oid.fed
package com.sphereon.oid.fed.server.admin

import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sphereon.oid.fed
package com.sphereon.oid.fed.server.admin

import org.junit.jupiter.api.Test
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ dependencyResolutionManagement {
}

include(":modules:openid-federation-common")
include(":admin-server")
include(":modules:admin-server")

0 comments on commit eb4d318

Please sign in to comment.