Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.23 KB

gettingstarted.rst

File metadata and controls

50 lines (39 loc) · 1.23 KB

Getting started

Welcome, dear fellow of bottom up power system modelling! This section is meant to give you some help getting hands on our project. If you feel, something is missing, please contact us!

Requirements

Java > v 1.8

Where to get

Checkout latest from GitHub or use maven for dependency management:

Stable releases

On Maven central:

<dependency>
  <groupId>com.github.ie3-institute</groupId>
  <artifactId>PowerSystemDataModel</artifactId>
  <version>1.1.0</version>
</dependency>

Snapshot releases

Available on OSS Sonatype. Add the correct repository:

<repositories>
  <repository>http://oss.sonatype.org/content/repositories/snapshots</repository>
</repositories>

and add the dependency:

<dependency>
  <groupId>com.github.ie3-institute</groupId>
  <artifactId>PowerSystemDataModel</artifactId>
  <version>2.0-SNAPSHOT</version>
</dependency>