Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/build/
/bin/
target/
.idea/

# OS Files #
.DS_Store
Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: java
env:
global:
secure: CIrYJdxxXbyfAiaTY7Xyy13xRKiQIyhxYoKvH3oWpSes1SAUoaHER7fHokVcydquYxRtrtke7OgCGQZ6lAsE8qo/XOVc2bpZh0aZSpj5IrTF2foN5BL+AbXDiqT12+HRrIxT6kpIdhJfkX1GQKNu6TaKqUQBvf7ufSKbvkQmi/jtTNr0By6l5azDEWH5Yr3YYdV5q6a3Hf72Ueb4kEDkVNp1xdGYOMFWGKSE6XvPAwE6LjUIso2/zNK1Va/YYhhm839o6ctbFRSKIJdbSIMpLUYIZiSy+mTZn2bqFmjBXTMNzJmXCC1g4J+NLPnM2aLfsAuwyUofkOPhLQpG5N6luKCUETo5DuJlckV+xsuMo4g1jq3O2s0tnx459Yc8vBbrTw+EL+cIqDLMOqP7U1WBxc4swpveZ4E8vPtkI7/i+wtl7Z3nCad6ea9FNvVP2uE7aHhj+i91ORtWZx2D2M/v08jtrfRtGZvCL3E5csn4+RHxKiA3dEtLRH0OJ7yZJD6CGj9voUcFUwnWxJ82pIK0nrv/nyf9VXo9j+rhQ72zGBZvU95ylIQriNJP54iD/nKhj/woTl6Nx6Q91EZ8QSfeAxm6dIkcgyNa6m/v5HmWvmXx7nLE0EHZuiUcxKmdhy+xU5SBLx+ZNXLdlB03NIcgBLZutNbmzVGYyhHO0pHWoPI=
8 changes: 8 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"generalSettings": {
"shouldScanRepo": true
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure"
}
}
1 change: 0 additions & 1 deletion RandomJSONRPC/.gitignore

This file was deleted.

42 changes: 42 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?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">
<modelVersion>4.0.0</modelVersion>

<groupId>org.random</groupId>
<artifactId>json-rpc</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>6</source>
<target>6</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
23 changes: 23 additions & 0 deletions src/main/main.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<content url="file://$MODULE_DIR$/../test">
<sourceFolder url="file://$MODULE_DIR$/../test/java" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: com.google.code.gson:gson:2.8.5" level="project" />
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.6" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
</component>
</module>
Loading