Skip to content

Commit

Permalink
Add empty cases-api/cases-impl projects
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Feb 15, 2022
1 parent 9fd03fd commit 8cda39d
Show file tree
Hide file tree
Showing 5 changed files with 174 additions and 0 deletions.
75 changes: 75 additions & 0 deletions model/cases-api/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2010-2022 Evolveum and contributors
~
~ This work is dual-licensed under the Apache License 2.0
~ and European Union Public License. See LICENSE file for details.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>model</artifactId>
<groupId>com.evolveum.midpoint.model</groupId>
<version>4.5-SNAPSHOT</version>
</parent>

<artifactId>cases-api</artifactId>
<packaging>jar</packaging>

<name>midPoint Cases - api</name>

<properties>
<maven.test.skip>true</maven.test.skip>
</properties>

<dependencies>
<!--<dependency>-->
<!-- <groupId>com.evolveum.commons</groupId>-->
<!-- <artifactId>util</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.prism</groupId>-->
<!-- <artifactId>prism-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.infra</groupId>-->
<!-- <artifactId>schema</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.model</groupId>-->
<!-- <artifactId>model-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.provisioning</groupId>-->
<!-- <artifactId>provisioning-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.repo</groupId>-->
<!-- <artifactId>task-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.repo</groupId>-->
<!-- <artifactId>repo-common</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->

<!--<dependency>-->
<!-- <groupId>org.springframework</groupId>-->
<!-- <artifactId>spring-context</artifactId>-->
<!--</dependency>-->

<!--<dependency>-->
<!-- <groupId>org.jetbrains</groupId>-->
<!-- <artifactId>annotations</artifactId>-->
<!--</dependency>-->
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright (C) 2010-2022 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
*/

package com.evolveum.midpoint.cases.api;

public class Test {
}
75 changes: 75 additions & 0 deletions model/cases-impl/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2010-2022 Evolveum and contributors
~
~ This work is dual-licensed under the Apache License 2.0
~ and European Union Public License. See LICENSE file for details.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>model</artifactId>
<groupId>com.evolveum.midpoint.model</groupId>
<version>4.5-SNAPSHOT</version>
</parent>

<artifactId>cases-impl</artifactId>
<packaging>jar</packaging>

<name>midPoint Cases - impl</name>

<properties>
<maven.test.skip>true</maven.test.skip>
</properties>

<dependencies>
<!--<dependency>-->
<!-- <groupId>com.evolveum.commons</groupId>-->
<!-- <artifactId>util</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.prism</groupId>-->
<!-- <artifactId>prism-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.infra</groupId>-->
<!-- <artifactId>schema</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.model</groupId>-->
<!-- <artifactId>model-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.provisioning</groupId>-->
<!-- <artifactId>provisioning-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.repo</groupId>-->
<!-- <artifactId>task-api</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!-- <groupId>com.evolveum.midpoint.repo</groupId>-->
<!-- <artifactId>repo-common</artifactId>-->
<!-- <version>${project.version}</version>-->
<!--</dependency>-->

<!--<dependency>-->
<!-- <groupId>org.springframework</groupId>-->
<!-- <artifactId>spring-context</artifactId>-->
<!--</dependency>-->

<!--<dependency>-->
<!-- <groupId>org.jetbrains</groupId>-->
<!-- <artifactId>annotations</artifactId>-->
<!--</dependency>-->
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright (C) 2010-2022 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
*/

package com.evolveum.midpoint.cases.impl;

public class Test {
}
2 changes: 2 additions & 0 deletions model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
<module>model-intest</module>
<module>workflow-api</module>
<module>workflow-impl</module>
<module>cases-api</module>
<module>cases-impl</module>
<module>notifications-api</module>
<module>notifications-impl</module>
<module>report-api</module>
Expand Down

0 comments on commit 8cda39d

Please sign in to comment.