controller
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.puresoltechnologies.genesis</groupId>
<artifactId>controller</artifactId>
<version>0.4.0</version>
</dependency><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>
<groupId>com.puresoltechnologies.genesis</groupId>
<artifactId>parent</artifactId>
<version>0.4.0</version>
</parent>
<artifactId>controller</artifactId>
<name>${officalName} - ${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>com.puresoltechnologies.commons</groupId>
<artifactId>misc</artifactId>
</dependency>
<dependency>
<groupId>com.puresoltechnologies.genesis</groupId>
<artifactId>tracker.spi</artifactId>
</dependency>
<dependency>
<groupId>com.puresoltechnologies.genesis</groupId>
<artifactId>transformation.spi</artifactId>
</dependency>
<dependency>
<groupId>com.puresoltechnologies.graphs</groupId>
<artifactId>statemodel</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>addBuildYear</id>
<phase>generate-sources</phase>
<goals>
<goal>timestamp-property</goal>
</goals>
<configuration>
<name>project.buildYear</name>
<pattern>yyyy</pattern>
<units>year</units>
<offset>0</offset>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>