structurized-workbench
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tech.molecules</groupId>
<artifactId>structurized-workbench</artifactId>
<version>0.1.3</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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tech.molecules</groupId>
<artifactId>structurized</artifactId>
<version>0.1.3</version>
</parent>
<artifactId>structurized-workbench</artifactId>
<name>structurized-workbench</name>
<description>Swing workbench components for exploring PRISM repositories and Structurized analytics</description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>tech.molecules</groupId>
<artifactId>structurized-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.molecules</groupId>
<artifactId>structurized-analytics</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.molecules</groupId>
<artifactId>prism-core</artifactId>
<version>0.1.3</version>
</dependency>
<dependency>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart</artifactId>
<version>${xchart.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>${maven.compiler.release}</source>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>