kopeme-visualizer-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.dagere.kopeme</groupId> <artifactId>kopeme-visualizer-core</artifactId> <version>0.7</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/maven-v4_0_0.xsd"> <parent> <artifactId>kopeme-parent</artifactId> <groupId>de.dagere.kopeme</groupId> <version>0.7</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>kopeme-visualizer-core</artifactId> <name>KoPeMe-Visualizer-Core</name> <version>0.7</version> <description>Dieser Projekt ermöglicht es, KoPeMe-Ergebnisdaten zu visualisieren.</description> <url>http://kopeme.dagere.de</url> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <manifestEntries> <Main-Class>de.dagere.kopeme.visualizer.VisualizationGenerator</Main-Class> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>