squirrelsql-launcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.squirrel-sql</groupId> <artifactId>squirrelsql-launcher</artifactId> <version>3.5.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.sf.squirrel-sql</groupId> <artifactId>squirrel-root-pom</artifactId> <version>3.5.0</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>squirrelsql-launcher</artifactId> <packaging>jar</packaging> <name>SQuirrel-SQL Launcher Scripts</name> <description>This project contains the launcher scripts that are used to start SQuirreL </description> <inceptionYear>2001</inceptionYear> <developers> <developer> <name>Gerd Wagner</name> <roles> <role>Administrator</role> <role>Developer</role> </roles> </developer> <developer> <name>Rob Manning</name> <roles> <role>Developer</role> <role>Release Manager</role> </roles> </developer> </developers> <licenses> <license> <name>GNU Lesser</name> <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <url>http://www.squirrelsql.org/</url> <scm> <connection>scm:git:git://git.code.sf.net/p/squirrel-sql/git</connection> <developerConnection>scm:git:ssh://git.code.sf.net/p/squirrel-sql/git</developerConnection> <url>http://sourceforge.net/p/squirrel-sql/git/ci/fe9318bdee3991f010b5b476244e5629c7d8efee/tree</url> <tag>squirrel-sql-3.5.0</tag> </scm> <issueManagement> <system>SourceForge Tracker</system> <url>http://sourceforge.net/tracker/?group_id=28383%26atid=393414</url> </issueManagement> <ciManagement> <system>Hudson</system> <url>https://www.squirrel-sql.org/hudson/</url> </ciManagement> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> <executions> <execution> <phase>process-resources</phase> <goals> <goal>unpack</goal> </goals> </execution> </executions> <configuration> <artifactItems> <artifactItem> <groupId>net.sf.squirrel-sql</groupId> <artifactId>squirrel-sql</artifactId> </artifactItem> </artifactItems> <includes>**/splash.jpg</includes> <outputAbsoluteArtifactFilename>splash.jpg</outputAbsoluteArtifactFilename> <outputDirectory>target/dependency</outputDirectory> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.4</version> <configuration> <tasks> <copy todir="target/classes/icons/"> <fileset dir="target/dependency/net/sourceforge/squirrel_sql/client/resources/images/gm/"> <include name="splash.jpg" /> </fileset> </copy> </tasks> </configuration> <executions> <execution> <phase>process-resources</phase> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sf.squirrel-sql</groupId> <artifactId>squirrel-sql</artifactId> <version>${project.version}</version> </dependency> </dependencies> <profiles> <profile> <id>m2e</id> <build> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <versionRange>${dependency-plugin-version}</versionRange> <goals> <goal>unpack</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <versionRange>[1,4)</versionRange> <goals> <goal>run</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>