diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-09-13 09:02:58 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-09-13 09:02:58 +0200 |
commit | 8883fd1c0efa08fe0a73a11a1c8986fa3ea72753 (patch) | |
tree | 97ee6979a60ca1a462490e8e49a74ed8a0cb7293 /pom.xml | |
parent | 7e85912db28d09d876fe6840e228781fb4ea5256 (diff) | |
download | EAAF-Components-8883fd1c0efa08fe0a73a11a1c8986fa3ea72753.tar.gz EAAF-Components-8883fd1c0efa08fe0a73a11a1c8986fa3ea72753.tar.bz2 EAAF-Components-8883fd1c0efa08fe0a73a11a1c8986fa3ea72753.zip |
refactor utils into a separate module
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -1,8 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - --> - -<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"> + --><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> <groupId>at.gv.egiz</groupId> <artifactId>eaaf</artifactId> @@ -154,8 +152,9 @@ <modules> <module>eaaf_core_api</module> <module>eaaf_core</module> - <module>eaaf_modules</module> - </modules> + <module>eaaf_modules</module> + <module>eaaf_core_utils</module> + </modules> <dependencyManagement> <dependencies> @@ -164,7 +163,11 @@ <artifactId>eaaf_core_api</artifactId> <version>${egiz.eaaf.version}</version> </dependency> - + <dependency> + <groupId>at.gv.egiz.eaaf</groupId> + <artifactId>eaaf_core_utils</artifactId> + <version>${egiz.eaaf.version}</version> + </dependency> <dependency> <groupId>at.gv.egiz.components</groupId> <artifactId>eventlog-api</artifactId> @@ -457,4 +460,4 @@ </plugins> </build> -</project> +</project>
\ No newline at end of file |