geoclimate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.orbisgis.geoclimate</groupId> <artifactId>geoclimate</artifactId> <version>1.0.0</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.orbisgis.geoclimate</groupId> <artifactId>geoclimate-parent</artifactId> <version>1.0.0</version> <relativePath>../</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>geoclimate</artifactId> <version>1.0.0</version> <!-- Project Information --> <name>geoclimate-cli</name> <description>GeoClimate module to run geoclimate workflow with a command line interface. </description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.orbisgis</groupId> <artifactId>commons</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>h2gis</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>h2gis-utilities</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>h2gis-network</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>postgis-jts</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>cts</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-json</artifactId> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-sql</artifactId> </dependency> <dependency> <groupId>org.orbisgis.geoclimate</groupId> <artifactId>geoindicators</artifactId> </dependency> <dependency> <groupId>org.orbisgis.geoclimate</groupId> <artifactId>bdtopo</artifactId> </dependency> <dependency> <groupId>org.orbisgis.geoclimate</groupId> <artifactId>osm</artifactId> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> </dependency> <dependency> <groupId>org.orbisgis.data</groupId> <artifactId>h2gis</artifactId> </dependency> <dependency> <groupId>org.orbisgis.data</groupId> <artifactId>postgis</artifactId> </dependency> <dependency> <groupId>org.orbisgis.geoclimate</groupId> <artifactId>osmtools</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.orbisgis.geoclimate.Geoclimate</mainClass> </manifest> </archive> <finalName>${project.build.finalName}</finalName> <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources/</directory> <filtering>true</filtering> <includes> <include>**/geoclimate.properties</include> </includes> </resource> <resource> <directory>src/main/resources/</directory> <filtering>false</filtering> <excludes> <exclude>**/geoclimate.properties</exclude> </excludes> </resource> </resources> </build> <distributionManagement> <site> <id>orbisgis-devs-website</id> <name>Devs Website</name> <url>file:/var/www/html/${project.parent.artifactId}/${project.artifactId}</url> </site> </distributionManagement> </project>