scafa-systray
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.apetrelli.scafa</groupId>
<artifactId>scafa-systray</artifactId>
<version>1.0.0-alpha-3</version>
</dependency><!--
Scafa - A universal non-caching proxy for the road warrior
Copyright (C) 2015 Antonio Petrelli
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses />.
-->
<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.github.apetrelli.scafa</groupId>
<artifactId>scafa</artifactId>
<version>1.0.0-alpha-3</version>
</parent>
<artifactId>scafa-systray</artifactId>
<name>Scafa - SysTray management</name>
<description>Management of profiles of Scafa inside SysTray.</description>
<dependencies>
<dependency>
<groupId>com.github.apetrelli.scafa</groupId>
<artifactId>scafa-server</artifactId>
<version>1.0.0-alpha-3</version>
</dependency>
<dependency>
<groupId>com.github.apetrelli.scafa</groupId>
<artifactId>scafa-jxtrayicon</artifactId>
<version>1.0.0-alpha-3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.github.apetrelli.scafa.systray.ScafaSystrayMain</mainClass>
</manifest>
<manifestEntries>
<Class-Path>ext/</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>