Migrate module scm-dao-xml

This commit is contained in:
Sebastian Sdorra
2020-12-18 16:03:42 +01:00
committed by René Pfeuffer
parent 18a0bcb317
commit 290e7decd8
3 changed files with 48 additions and 1 deletions

View File

@@ -41,7 +41,8 @@ dependencies {
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// TODO version from parent
annotationProcessor 'org.projectlombok:lombok:1.18.10'
// servlet api
implementation 'javax.servlet:javax.servlet-api'

43
scm-dao-xml/build.gradle Normal file
View File

@@ -0,0 +1,43 @@
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
plugins {
id 'java-library'
}
dependencies {
api platform(project(':'))
api project(':scm-core')
testImplementation project(':scm-test')
// lombok
compileOnly 'org.projectlombok:lombok'
// TODO version from parent
annotationProcessor 'org.projectlombok:lombok:1.18.10'
}
test {
useJUnitPlatform()
}

View File

@@ -28,3 +28,6 @@ include('scm-annotations')
include('scm-annotation-processor')
include('scm-core')
include('scm-test')
// include('scm-ui')
// include('scm-plugins')
include('scm-dao-xml')