Skip to content

Commit

Permalink
moved idepix-aatsr to 8.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
marpet committed Jun 30, 2022
1 parent fd9f1f3 commit 6ad17dc
Show file tree
Hide file tree
Showing 36 changed files with 2,618 additions and 0 deletions.
15 changes: 15 additions & 0 deletions idepix-aatsr/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
target/
.idea
*.iml
Technical Note_cloudshadow_draft_v0.2.docx
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
!/.mvn/wrapper/maven-wrapper.jar
95 changes: 95 additions & 0 deletions idepix-aatsr/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?xml version="1.0"?>
<!--
~ Copyright (C) 2019 Brockmann Consult GmbH ([email protected])
~
~ 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.esa.snap</groupId>
<artifactId>snap-idepix</artifactId>
<version>8.0.1</version>
</parent>

<artifactId>idepix-aatsr</artifactId>
<version>8.0.3</version>

<packaging>nbm</packaging>

<name>IdePix AATSR</name>
<description>Classification of pixels (cloud, cloud-shadow and land) originating from AATSR 4th reprocessing data.</description>

<properties>
<idepix.version>8.0.1</idepix.version>
<s3tbx.version>8.0.6</s3tbx.version>
</properties>

<dependencies>
<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>idepix-core</artifactId>
<version>${idepix.version}</version>
</dependency>

<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>ceres-core</artifactId>
</dependency>
<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>ceres-jai</artifactId>
</dependency>
<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>ceres-glayer</artifactId>
</dependency>
<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>snap-core</artifactId>
</dependency>
<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>snap-collocation</artifactId>
</dependency>
<dependency>
<groupId>org.esa.snap</groupId>
<artifactId>snap-gpf</artifactId>
</dependency>

<dependency>
<groupId>org.esa.s3tbx</groupId>
<artifactId>s3tbx-sentinel3-reader</artifactId>
<version>${s3tbx.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.netbeans.utilities</groupId>
<artifactId>nbm-maven-plugin</artifactId>
</plugin>

</plugins>
</build>


</project>
Loading

0 comments on commit 6ad17dc

Please sign in to comment.