anteater-desktop
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ganteater</groupId>
<artifactId>anteater-desktop</artifactId>
<version>1.2.11</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.ganteater</groupId>
<artifactId>anteater</artifactId>
<version>1.2.11</version>
</parent>
<artifactId>anteater-desktop</artifactId>
<name>Desktop Application</name>
<description>A user-friendly desktop application for managing recipes, automating workflows, testing systems, and interacting with
environments via an intuitive graphical interface.</description>
<properties>
<scm-path>/anteater-desktop</scm-path>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.ganteater</groupId>
<artifactId>anteater-cli</artifactId>
<version>1.2.11</version>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.13</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>pack</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>anteater</finalName>
<archive>
<manifest>
<mainClass>com.ganteater.ae.desktop.Anteater</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:svn:${scm-root}${scm-branch}${scm-path}</connection>
<developerConnection>scm:svn:${scm-root}${scm-branch}${scm-path}</developerConnection>
<url>${scm-web}${scm-branch}${scm-path}</url>
</scm>
</project>