Skip to content

Commit

Permalink
prepare for 1.1.1 release
Browse files Browse the repository at this point in the history
reduce dependencies by moving
(experimental) schema generation to test scope
  • Loading branch information
markusstraub committed Oct 27, 2020
1 parent 42118e4 commit e9e0163
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To use the current release version just add one of these dependencies to your `p
<dependency>
<groupId>at.ac.ait</groupId>
<artifactId>ariadne-json-route-format</artifactId>
<version>1.1</version>
<version>1.1.1</version>
</dependency>

<dependency>
Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>at.ac.ait</groupId>
<artifactId>ariadne-json-route-format</artifactId>
<version>1.2-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
<name>Ariadne JSON Route Format</name>
<description>JSON exchange format for intermodal / multimodal routes developed by the Austrian Institute of Technology</description>
<url>https://github.com/dts-ait/ariadne-json-route-format</url>
Expand Down Expand Up @@ -56,7 +56,12 @@
<artifactId>guava</artifactId>
<version>30.0-jre</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
Expand Down Expand Up @@ -87,26 +92,21 @@
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson-version}</version>
</dependency>

<!-- test dependencies below -->

<dependency>
<groupId>com.kjetland</groupId>
<artifactId>mbknor-jackson-jsonschema_2.12</artifactId>
<version>1.0.39</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.30</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import scala.Option;

/**
* Test reading, writing and exporting schemas.
* We use the "Data Binding" method of Jackson (to map POJOs to JSON).
* <p>
* <b>Note:</b>
Expand Down

0 comments on commit e9e0163

Please sign in to comment.