Skip to content

Commit

Permalink
Introduced concepts JAR
Browse files Browse the repository at this point in the history
  • Loading branch information
tonydamage committed Feb 22, 2021
1 parent 378f7d9 commit 6c58257
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
5 changes: 5 additions & 0 deletions infra/axiom/pom.xml
Expand Up @@ -26,6 +26,11 @@
</properties>

<dependencies>
<dependency>
<groupId>com.evolveum.concepts</groupId>
<artifactId>concepts</artifactId>
<version>4.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
Expand Down
76 changes: 76 additions & 0 deletions infra/concepts/pom.xml
@@ -0,0 +1,76 @@
<?xml version="1.0"?>
<!--
~ Copyright (c) 2010-2018 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>infra</artifactId>
<groupId>com.evolveum.midpoint.infra</groupId>
<version>4.3-SNAPSHOT</version>
</parent>

<groupId>com.evolveum.concepts</groupId>
<artifactId>concepts</artifactId>

<name>Concepts</name>

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

<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.evolveum.midpoint.tools</groupId>
<artifactId>test-ng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.8-1</version>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
<configuration>
<visitor>true</visitor>
<listener>true</listener>
</configuration>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions infra/pom.xml
Expand Up @@ -21,6 +21,7 @@
<name>midPoint Infrastructure</name>

<modules>
<module>concepts</module>
<module>axiom</module>
<module>util</module>
<module>schema</module>
Expand Down

0 comments on commit 6c58257

Please sign in to comment.