Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<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> | |
<groupId>info.schnatterer</groupId> | |
<artifactId>remoteDbDumper</artifactId> | |
<version>1.0</version> | |
<description> | |
</description> | |
<dependencies> | |
<dependency> | |
<groupId>net.sourceforge.htmlunit</groupId> | |
<artifactId>htmlunit</artifactId> | |
<version>2.12</version> | |
</dependency> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.17</version> | |
</dependency> | |
<dependency> | |
<groupId>com.beust</groupId> | |
<artifactId>jcommander</artifactId> | |
<version>1.30</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>${project.artifactId}-${pom.version}</finalName> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.0</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
</configuration> | |
</plugin> | |
<!-- The configuration of maven-assembly-plugin --> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<!-- The configuration of the plugin --> | |
<configuration> | |
<!-- Specifies the configuration file of the assembly plugin --> | |
<descriptors> | |
<descriptor>src/main/assembly/assembly.xml</descriptor> | |
</descriptors> | |
</configuration> | |
<!-- execute the assembly:single goal during the install phase. --> | |
<executions> | |
<execution> | |
<phase>install</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<!-- The configuration of maven-jar-plugin --> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<configuration> | |
<!-- Use the same name for the jar, folder has version information (assembly) --> | |
<finalName>${project.artifactId}</finalName> | |
<!-- Configure archiver --> | |
<archive> | |
<!-- Set up manifest --> | |
<manifest> | |
<addClasspath>true</addClasspath> | |
<!-- Within assembly, all dependencies are within lib dir --> | |
<classpathPrefix>lib/</classpathPrefix> | |
<mainClass>info.schnatterer.remoteDbDumper.RemoteDbDumper</mainClass> | |
</manifest> | |
</archive> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |