StartUp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.splotycode.mosaik</groupId>
<artifactId>StartUp</artifactId>
<version>2.2.9</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>Mosaik-Framework</artifactId>
<groupId>io.github.splotycode.mosaik</groupId>
<version>2.2.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>StartUp</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${mosaik.plugin.compile}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${mosaik.plugin.assembly}</version>
<configuration>
<archive>
<manifest>
<mainClass>io.github.splotycode.mosaik.startup.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>${mosaik.reflections.version}</version>
</dependency>
<dependency>
<groupId>io.github.splotycode.mosaik</groupId>
<artifactId>Console</artifactId>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>io.github.splotycode.mosaik</groupId>
<artifactId>Runtime</artifactId>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>io.github.splotycode.mosaik</groupId>
<artifactId>AnnotationProcessing</artifactId>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>io.github.splotycode.mosaik</groupId>
<artifactId>ArgParser</artifactId>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>io.github.splotycode.mosaik</groupId>
<artifactId>DomParsing</artifactId>
<version>2.2.9</version>
</dependency>
</dependencies>
</project>