Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fge/json-schema-validator-demo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: java-json-tools/json-schema-validator-demo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 8, 2020

  1. Configure Travis CI.

    Capstan committed Jan 8, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    9fccd6e View commit details
  2. Update json-schema-processor-examples to 0.8.5.

    Also bumped up the maven plugin versions:
    * maven-dependency-plugin to 3.1.1
    * maven-compiler-plugin to 3.8.1
    
    Fixed the class namespace in the README.
    Capstan committed Jan 8, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    91e8e2e View commit details
Showing with 11 additions and 6 deletions.
  1. +5 −0 .travis.yml
  2. +1 −1 README.md
  3. +5 −5 pom.xml
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: java
jdk:
- openjdk8
- openjdk11

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ mvn clean install
with:</p>

<pre>
java -cp target/classes:target/dependency/* com.github.fge.jsonschema.WebApp
java -cp target/classes:target/dependency/* com.github.fge.jsonschema.misc.WebApp
</pre>

<p>The application will listen on the loopback interface, and on port 8080 by default; in order to
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@

<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>com.github.fge</groupId>
<groupId>com.github.java-json-tools</groupId>
<version>1.0-SNAPSHOT</version>
<name>json-schema-validator-demo</name>
<artifactId>json-schema-validator-demo</artifactId>
@@ -57,9 +57,9 @@
</dependency>

<dependency>
<groupId>com.github.fge</groupId>
<groupId>com.github.java-json-tools</groupId>
<artifactId>json-schema-processor-examples</artifactId>
<version>0.8.2</version>
<version>0.8.5</version>
</dependency>

<dependency>
@@ -98,7 +98,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<version>3.1.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
@@ -111,7 +111,7 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<version>3.8.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>