Skip to content

Commit

Permalink
Okay fixed javadoc and stuff c.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauriichan committed Oct 23, 2020
1 parent 992b5c3 commit 158ff90
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
48 changes: 48 additions & 0 deletions utils/json/json-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,52 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ public class JsonParser implements TextDeserializer<JsonValue<?>> {
public JsonValue<?> fromReader(Reader reader) throws IOException, JsonSyntaxException {
return read(new JsonReader(reader));
}


/*
* WIP c.c
*/

protected JsonValue<?> read(JsonReader reader) throws IOException, JsonSyntaxException {
JsonToken token = reader.next();
switch (token) {
Expand Down

0 comments on commit 158ff90

Please sign in to comment.