Skip to content

Commit

Permalink
projectforge-caldav -> projectforge-carddav
Browse files Browse the repository at this point in the history
  • Loading branch information
kreinhard committed Dec 3, 2024
1 parent 8fc0c83 commit d0aed59
Show file tree
Hide file tree
Showing 20 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion projectforge-application/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ val kotlinCompilerDependencies = mutableListOf<String>()
dependencies {
implementation(project(":projectforge-wicket"))
implementation(project(":projectforge-rest"))
implementation(project(":projectforge-caldav"))
implementation(project(":projectforge-carddav"))
implementation(project(":projectforge-webapp"))
implementation(project(":org.projectforge.plugins.datatransfer"))
implementation(project(":org.projectforge.plugins.ihk"))
Expand Down
1 change: 0 additions & 1 deletion projectforge-caldav/src/main/resources/ical4j.properties

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ dependencies {
testImplementation(libs.org.mockito.core)
}

description = "projectforge-caldav"
description = "projectforge-carddav"
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.projectforge.carddav

import org.springframework.beans.factory.annotation.Value
import org.springframework.context.annotation.Configuration

@Configuration
open class CardDavConfig {

@Value("\${projectforge.carddav.basePath}")
open lateinit var basePath: String
protected set
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
projectforge.carddav.basePath=/carddav
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(":projectforge-application")
include(":projectforge-business")
include(":projectforge-common")
include(":projectforge-commons-test")
include(":projectforge-caldav")
include(":projectforge-carddav")
include(":projectforge-jcr")
include(":projectforge-model")
include(":projectforge-rest")
Expand Down

0 comments on commit d0aed59

Please sign in to comment.