project-manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.testerum</groupId>
<artifactId>project-manager</artifactId>
<version>5.3.5</version>
</dependency><?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">
<parent>
<artifactId>testerum</artifactId>
<groupId>com.testerum</groupId>
<version>5.3.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>project-manager</artifactId>
<dependencies>
<!--==================== Internal Dependencies ====================-->
<!-- common-di -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>common-di</artifactId>
</dependency>
<!-- file-service -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>file-service</artifactId>
</dependency>
<!--==================== External Dependencies ====================-->
<!-- Kotlin -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<!-- Guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!--==================== test dependencies ====================-->
</dependencies>
<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<plugins>
<!-- Kotlin -->
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
</plugin>
</plugins>
</build>
</project>