-
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
0 parents
commit 1c8ae42
Showing
6 changed files
with
1,051 additions
and
0 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 @@ | ||
ECHO ist eingeschaltet (ON). |
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,5 @@ | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
target/ |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
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,322 @@ | ||
<?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>org.esa.senbox</groupId> | ||
<artifactId>senbox</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
<name>Senbox</name> | ||
<url>http://www.brockmann-consult.de/</url> | ||
|
||
<description>ESA Sentinel Toolbox Platform</description> | ||
|
||
<packaging>pom</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<senboxVersionRange>[0.5,1.0-SNAPSHOT)</senboxVersionRange> | ||
</properties> | ||
|
||
<organization> | ||
<name>ESA ESRIN</name> | ||
<url>http://www.esa.int/About_Us/ESRIN</url> | ||
</organization> | ||
|
||
<inceptionYear>2014</inceptionYear> | ||
|
||
<issueManagement> | ||
<system>JIRA</system> | ||
<url>https://senbox.atlassian.net/</url> | ||
</issueManagement> | ||
|
||
<!-- TODO - clarify which public maven repo will will deploy to --> | ||
|
||
<!-- | ||
<scm> | ||
<connection>scm:svn:https://www.brockmann-consult.de/svn/os/ceres/trunk</connection> | ||
<url>https://www.brockmann-consult.de/svn/os/ceres/trunk</url> | ||
</scm> | ||
<repositories> | ||
<repository> | ||
<id>bc-mvn-repo-http</id> | ||
<name>Public Maven Repository at Brockmann Consult</name> | ||
<url>http://www.brockmann-consult.de/mvn/os</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
<checksumPolicy>warn</checksumPolicy> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
<checksumPolicy>warn</checksumPolicy> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<distributionManagement> | ||
<repository> | ||
<id>bc-mvn-repo-public</id> | ||
<name>Public Maven Repository at Brockmann Consult</name> | ||
<url>scp://www.brockmann-consult.de/var/www/www.brockmann-consult.de/mvn/os</url> | ||
<uniqueVersion>false</uniqueVersion> | ||
</repository> | ||
<snapshotRepository> | ||
<id>bc-mvn-repo-public</id> | ||
<name>Public Maven Snapshot Repository at Brockmann Consult</name> | ||
<url>scp://www.brockmann-consult.de/var/www/www.brockmann-consult.de/mvn/os</url> | ||
<uniqueVersion>false</uniqueVersion> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
--> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU General Public License v3 (GPL)</name> | ||
<url>http://www.gnu.org/licenses/gpl.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<modules> | ||
<module>senbox-help</module> | ||
</modules> | ||
|
||
<!-- | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.thoughtworks.xstream</groupId> | ||
<artifactId>xstream</artifactId> | ||
<version>1.4.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>xpp3</groupId> | ||
<artifactId>xpp3</artifactId> | ||
<version>1.1.4c</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdom</groupId> | ||
<artifactId>jdom2</artifactId> | ||
<version>2.0.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-launcher</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-core</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-binding</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-ui</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-deploy</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-glayer</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-jai</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-binio</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-site</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-site</artifactId> | ||
<version>${ceres.versionRange}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>1.9.5</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
<debug>true</debug> | ||
<encoding>UTF-8</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.1.2</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-eclipse-plugin</artifactId> | ||
<version>2.3</version> | ||
<configuration> | ||
<wtpversion>1.5</wtpversion> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-ssh</artifactId> | ||
<version>1.0-beta-7</version> | ||
</extension> | ||
</extensions> | ||
</build> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.8.1</version> | ||
<configuration> | ||
<excludePackageNames>*.internal:com.bc.ceres.site</excludePackageNames> | ||
<aggregate>true</aggregate> | ||
<quiet>true</quiet> | ||
<links> | ||
<link>http://java.sun.com/javase/6/docs/api/</link> | ||
</links> | ||
<groups> | ||
<group> | ||
<title>Ceres Core API</title> | ||
<packages>com.bc.ceres.core:com.bc.ceres.core.runtime:com.bc.ceres.launcher</packages> | ||
</group> | ||
<group> | ||
<title>Ceres Binding API</title> | ||
<packages> | ||
com.bc.ceres.binding:com.bc.ceres.binding.accessors:com.bc.ceres.binding.converters:com.bc.ceres.binding.validators:com.bc.ceres.binding.dom:com.bc.ceres.binding.swing | ||
</packages> | ||
</group> | ||
<group> | ||
<title>Ceres Swing API</title> | ||
<packages>com.bc.ceres.swing.update:com.bc.ceres.swing.progress:com.bc.ceres.swing | ||
</packages> | ||
</group> | ||
<group> | ||
<title>Ceres Layer API</title> | ||
<packages> | ||
com.bc.ceres.glayer:com.bc.ceres.glayer.support:com.bc.ceres.grender:com.bc.ceres.grender.support:com.bc.ceres.glevel:com.bc.ceres.glevel.support | ||
</packages> | ||
</group> | ||
<group> | ||
<title>Ceres Binary I/O API</title> | ||
<packages>com.bc.ceres.binio:com.bc.ceres.binio.util:com.bc.ceres.binio.binx | ||
</packages> | ||
</group> | ||
</groups> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
<developers> | ||
<developer> | ||
<id>norman</id> | ||
<name>Norman Fomferra</name> | ||
<email>[email protected]</email> | ||
<organization>Brockmann Consult</organization> | ||
<roles> | ||
<role>Project Manager</role> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>marcop</id> | ||
<name>Marco Peters</name> | ||
<email>[email protected]</email> | ||
<organization>Brockmann Consult</organization> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>ralf</id> | ||
<name>Ralf Quast</name> | ||
<email>[email protected]</email> | ||
<organization>Brockmann Consult</organization> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>marcoz</id> | ||
<name>Marco Zühlke</name> | ||
<email>[email protected]</email> | ||
<organization>Brockmann Consult</organization> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>thomas</id> | ||
<name>Thomas Storm</name> | ||
<email>[email protected]</email> | ||
<organization>Brockmann Consult</organization> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>tonio</id> | ||
<name>Tonio Fincke</name> | ||
<email>[email protected]</email> | ||
<organization>Brockmann Consult</organization> | ||
<roles> | ||
<role>Java Developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
--> | ||
</project> |
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,49 @@ | ||
<?xml version="1.0"?> | ||
<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> | ||
<artifactId>ceres</artifactId> | ||
<groupId>com.bc.ceres</groupId> | ||
<version>0.14.1</version> | ||
</parent> | ||
|
||
<name>Ceres Site Generation</name> | ||
<artifactId>ceres-site</artifactId> | ||
<version>0.14</version> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-launcher</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bc.ceres</groupId> | ||
<artifactId>ceres-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdom</groupId> | ||
<artifactId>jdom2</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.4</version> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<mainClass>com.bc.ceres.site.SiteCreator</mainClass> | ||
<addClasspath>true</addClasspath> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |