-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb26ce1
commit 30e7e98
Showing
12 changed files
with
499 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,379 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>gov.usgs.volcanoes</groupId> | ||
<artifactId>swarmPlotter</artifactId> | ||
<name>Swarm</name> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<url>http://volcanoes.usgs.gov/software/swarm</url> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/tparker-usgs/swarmPlotter/issues</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>Travis</system> | ||
<url>https://travis-ci.org/tparker-usgs/swarmPlotter/</url> | ||
</ciManagement> | ||
<developers> | ||
<developer> | ||
<id>tparker</id> | ||
<name>Tom Parker</name> | ||
<email>[email protected]</email> | ||
<organization>U.S. Geological Survey, Alaska Volcano Observatory</organization> | ||
<properties> | ||
<active>true</active> | ||
</properties> | ||
</developer> | ||
<developer> | ||
<id>cervelli</id> | ||
<name>Peter Cervelli</name> | ||
<email>[email protected]</email> | ||
<organization>U.S. Geological Survey, Volcano Science Center</organization> | ||
<properties> | ||
<active>true</active> | ||
</properties> | ||
</developer> | ||
<developer> | ||
<id>lantolik</id> | ||
<name>Loren Antolik</name> | ||
<email>[email protected]</email> | ||
<organization>U.S. Geological Survey, Hawaiian Volcano Observatory</organization> | ||
<properties> | ||
<active>true</active> | ||
</properties> | ||
</developer> | ||
<developer> | ||
<id>dcervelli</id> | ||
<name>Dan Cervelli</name> | ||
<properties> | ||
<active>false</active> | ||
</properties> | ||
</developer> | ||
</developers> | ||
<contributors> | ||
<contributor> | ||
<name>Kevin Frechette (ISTI)</name> | ||
</contributor> | ||
<contributor> | ||
<name>Anthony Lomax</name> | ||
</contributor> | ||
<contributor> | ||
<name>Dave Ketchum</name> | ||
</contributor> | ||
<contributor> | ||
<name>Chirag Patel</name> | ||
</contributor> | ||
<contributor> | ||
<name>Ivan Henson</name> | ||
</contributor> | ||
</contributors> | ||
<licenses> | ||
<license> | ||
<name>CC0 1.0 Universal</name> | ||
<url>http://creativecommons.org/publicdomain/zero/1.0 /></url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:[email protected]:usgs/swarmPlotter.git</connection> | ||
<developerConnection>scm:git:[email protected]:usgs/swarmPlotter.git</developerConnection> | ||
<url>[email protected]:tparker-usgs/swarmPlotter.git</url> | ||
</scm> | ||
<build> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-ssh-external</artifactId> | ||
<version>1.0-beta-6</version> | ||
</extension> | ||
</extensions> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<versionRange>1.4.0</versionRange> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<execute /> | ||
</action> | ||
<comment>source:</comment> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>2.4.1</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<minimizeJar>true</minimizeJar> | ||
<filters> | ||
<filter> | ||
<artifact>org.apache:log4j</artifact> | ||
<includes> | ||
<include>org/apache/log4j/**</include> | ||
</includes> | ||
</filter> | ||
<filter> | ||
<artifact>org.freemarker:freemarker</artifact> | ||
<includes> | ||
<include>freemarker/**</include> | ||
</includes> | ||
</filter> | ||
<filter> | ||
<artifact>com.jgoodies:jgoodies-common</artifact> | ||
<includes> | ||
<include>**</include> | ||
</includes> | ||
</filter> | ||
<filter> | ||
<artifact>com.jgoodies:jgoodies-forms</artifact> | ||
<includes> | ||
<include>**</include> | ||
</includes> | ||
</filter> | ||
<filter> | ||
<artifact>com.jgoodies:jgoodies-looks</artifact> | ||
<includes> | ||
<include>**</include> | ||
</includes> | ||
</filter> | ||
<filter> | ||
<artifact>opensymphony:oscache</artifact> | ||
<includes> | ||
<include>**</include> | ||
</includes> | ||
</filter> | ||
</filters> | ||
<artifactSet> | ||
<includes> | ||
<include>gov.usgs.volcanoes:usgs</include> | ||
<include>gov.usgs.volcanoes:volcano-core</include> | ||
<include>gov.usgs.volcanoes:winston</include> | ||
<include>gov.usgs.volcanoes:swarm</include> | ||
<include>org.freemarker:freemarker</include> | ||
<include>com.jgoodies:*</include> | ||
<include>com.martiansoftware:jsap</include> | ||
<include>net.sourceforge.jtransforms:jtransforms</include> | ||
<include>org.slf4j:*</include> | ||
<include>org.apache:log4j</include> | ||
<include>net.alomax:*</include> | ||
<include>edu.sc.seis:*</include> | ||
<include>colt:colt</include> | ||
<include>edu.iris:JavaSeedLite</include> | ||
<include>opensymphony:oscache</include> | ||
</includes> | ||
</artifactSet> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.6</version> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<addClasspath>true</addClasspath> | ||
<mainClass>gov.usgs.volcanoes.swarmPlotter.SwarmPlotter</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<version>1.4.0</version> | ||
<executions> | ||
<execution> | ||
<phase>process-sources</phase> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<file>${version.template.file}</file> | ||
<outputFile>${version.file}</outputFile> | ||
<replacements> | ||
<replacement> | ||
<token>@buildnumber@</token> | ||
<value>${svn.revision}</value> | ||
</replacement> | ||
<replacement> | ||
<token>@buildtime@</token> | ||
<value>${maven.build.timestamp}</value> | ||
</replacement> | ||
<replacement> | ||
<token>@pomversion@</token> | ||
<value>${project.version}</value> | ||
</replacement> | ||
</replacements> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
<version>2.7</version> | ||
<configuration> | ||
<format>xml</format> | ||
<maxmem>256m</maxmem> | ||
<aggregate>true</aggregate> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eluder.coveralls</groupId> | ||
<artifactId>coveralls-maven-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<configuration> | ||
<repoToken>${env.coveralls_repo_token}</repoToken> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>3.4</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-scm</artifactId> | ||
<version>2.9</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
<artifactId>maven-scm-manager-plexus</artifactId> | ||
<version>1.9.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
<artifactId>maven-scm-provider-gitexe</artifactId> | ||
<version>1.9.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
<artifactId>maven-scm-api</artifactId> | ||
<version>1.9.4</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.6</version> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/assembly/swarmBin.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<repositories> | ||
<repository> | ||
<releases /> | ||
<id>volcanoes</id> | ||
<url>http://volcanoes.usgs.gov/software/maven2/</url> | ||
</repository> | ||
</repositories> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-pmd-plugin</artifactId> | ||
<version>3.5</version> | ||
<configuration> | ||
<rulesets> | ||
<ruleset>/rulesets/java/braces.xml</ruleset> | ||
<ruleset>/rulesets/java/naming.xml</ruleset> | ||
<ruleset>.ruleset</ruleset> | ||
</rulesets> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>findbugs-maven-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<configuration> | ||
<effort>Max</effort> | ||
<threshold>Low</threshold> | ||
<xmlOutput>true</xmlOutput> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-jxr-plugin</artifactId> | ||
<version>2.5</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.3</version> | ||
<configuration> | ||
<failOnError>false</failOnError> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
<version>2.7</version> | ||
<configuration> | ||
<formats> | ||
<format>html</format> | ||
<format>xml</format> | ||
</formats> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>javancss-maven-plugin</artifactId> | ||
<version>2.1</version> | ||
<configuration> | ||
<forceEncoding>utf-8</forceEncoding> | ||
<failOnViolation>false</failOnViolation> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
<distributionManagement> | ||
<repository> | ||
<id>volcanoes.web</id> | ||
<name>Volcanoes website</name> | ||
<url>scpexe://vulcan4.wr.usgs.gov/webdata/volcanoes.usgs.gov/htdocs/software/maven2</url> | ||
</repository> | ||
<site> | ||
<id>github.pages</id> | ||
<url>scm:git:https://[email protected]/tparker-usgs/swarmPlotter.git</url> | ||
</site> | ||
</distributionManagement> | ||
<properties> | ||
<version.template.file>src/main/resources/Version.java.template</version.template.file> | ||
<version.file>src/main/java/gov/usgs/volcanoes/swarmPlotter/Version.java</version.file> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
</project> | ||
|
Oops, something went wrong.